This guide describes how to manage instances using the API.
A prerequisite for implementation is that you have been assigned your token and account number, which need to be sent when communicating with our API.
The request is sent via the HTTP POST method:
Bash
curl -X 'POST' \
'https://api-aggregator.k1x.io/api/instance' \
-H 'accept: text/plain' \
-H 'Content-Type: application/json' \
-H 'X-K1X-Account: <ACCOUNT>' \
-H 'X-K1X-Token: <TOKEN>' \
-d '[
{
"name": "<InstanceName>",
"clientId": "<ClientID>",
"identifyingNumber": "<IdentifyingNumber>",
"incomeType": "<IncomeTypeEnumValue>",
"taxYear": <TaxYear>,
"entityType": "<EntityType>",
"yearSequence": <YearSequence>,
"taxFormType": "<TaxFormType>",
"stateOfResidence": "<State>"
}
]'
Header Name Type Description X-K1X-Account
String Required. Your account identifier. X-K1X-Token
String Required. Authorization token. Content-Type
String Should be application/json
.
The request body must contain a list of instance objects, with each object structured as shown below:
Field Type Required Description name
String Yes The name of the instance. Maximum 250 characters. clientId
String Yes Client ID associated with the instance. Maximum 250 characters. identifyingNumber
String Yes A unique identifying number for the instance. Maximum 20 characters. incomeType
Enum Yes Type of income. See Income Type for possible values. taxYear
Integer Yes The tax year. Must be greater than or equal to 2018. entityType
Enum Yes The entity type. See Entity Type for possible values. yearSequence
Integer Conditional Required when the entityType
is Trust
. taxFormType
Enum Yes The tax form type. See Tax Form Type for possible values. stateOfResidence
Enum Conditional Required when taxFormType
is Form1040
. State of residence. See State of Residence for possible values.
The response is a list of json
objects, structured as follows:
Type Description id
Int Unique identifier of the instance. name
String Name of the instance.
Value Description UsPartnership
U.S. Partnership UsCorporation
U.S. Corporation ForeignPartnership
Foreign Partnership ForeignCorporation
Foreign Corporation Scorp
S-Corp PrivateCompany
Wholly Owned Trust
Trust Smllc
SMLLC Individual
Individual
Value Description TaxableIncome
Taxable Income Ubi
UBI BothTaxableIncomeAndUbi
Both Taxable Income and UBI
Value Description Form1040
1040 Form1041
1041 Form1120
1120 Form1120S
1120S Form1065
1065 UBI990TPF
UBI 990-T/PF UBI990T
UBI 990-T UBI990PF
UBI 990-PF
Value Description Al
Alabama Ak
Alaska Az
Arizona Ar
Arkansas Ca
California Co
Colorado Ct
Connecticut De
Delaware Fl
Florida Ga
Georgia Hi
Hawaii Id
Idaho Il
Illinois In
Indiana Ia
Iowa Ks
Kansas Ky
Kentucky La
Louisiana Me
Maine Md
Maryland Ma
Massachusetts Mi
Michigan Mn
Minnesota Ms
Mississippi Mo
Missouri Mt
Montana Ne
Nebraska Nv
Nevada Nh
New Hampshire Nj
New Jersey Nm
New Mexico Ny
New York Nyc
New York City Nc
North Carolina Nd
North Dakota Oh
Ohio Ok
Oklahoma Or
Oregon Pa
Pennsylvania Ri
Rhode Island Sc
South Carolina Sd
South Dakota Tn
Tennessee Tx
Texas Ut
Utah Vt
Vermont Va
Virginia Wa
Washington Dc
Washington D.C. Wv
West Virginia Wi
Wisconsin Wy
Wyoming None
No State Foreign
Foreign
The following validation rules are applied to the request body:
Name : Required, maximum length 250 characters.
ClientId : Required, maximum length 250 characters.
IncomeType : Required, must be a valid enum value.
EntityType : Required, must be a valid enum value.
TaxFormType : Required, must be a valid enum value.
IdentifyingNumber : Required, maximum length 20 characters.
TaxYear : Required, must be greater than 2017.
YearSequence : Required if entityType
is Trust
.
StateOfResidence : Required when taxFormType
is Form1040
.
This API retrieves a list of instances based on the specified parameters, such as taxYear
. The response is a list of InstanceViewModel
objects.
The request is sent via the HTTP GET method:
curl -X 'GET' \
'https://api-aggregator.k1x.io/api/instance/list?taxYear=<TaxYear>' \
-H 'accept: text/plain' \
-H 'X-K1X-Account: <YourAccountID>' \
-H 'X-K1X-Token: <YourAuthToken>'
Header Name Type Description X-K1X-Account
String Required. Your account identifier. X-K1X-Token
String Required. Authorization token. Content-Type
String Should be application/json
.
Parameter Name Type Required Description taxYear
Integer Yes The tax year for which the instances are retrieved.
The response is a list of json
objects, structured as follows:
Type Description id
Int Unique identifier of the instance. name
String Name of the instance.