Working with Instances

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.

Create New Instance

The request is sent via the HTTP POST method:

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>"
  }
]'

Headers

Header NameTypeDescription
X-K1X-AccountStringRequired. Your account identifier.
X-K1X-TokenStringRequired. Authorization token.
Content-TypeStringShould be application/json.

Request Body

The request body must contain a list of instance objects, with each object structured as shown below:

Instance Object Format

FieldTypeRequiredDescription
nameStringYesThe name of the instance. Maximum 250 characters.
clientIdStringYesClient ID associated with the instance. Maximum 250 characters.
identifyingNumberStringYesA unique identifying number for the instance. Maximum 20 characters.
incomeTypeEnumYesType of income. See Income Type for possible values.
taxYearIntegerYesThe tax year. Must be greater than or equal to 2018.
entityTypeEnumYesThe entity type. See Entity Type for possible values.
yearSequenceIntegerConditionalRequired when the entityType is Trust.
taxFormTypeEnumYesThe tax form type. See Tax Form Type for possible values.
stateOfResidenceEnumConditionalRequired when taxFormType is Form1040. State of residence. See State of Residence for possible values.

Response

The response is a list of json objects, structured as follows:

TypeDescription
idIntUnique identifier of the instance.
nameStringName of the instance.

Entity Type

ValueDescription
UsPartnershipU.S. Partnership
UsCorporationU.S. Corporation
ForeignPartnershipForeign Partnership
ForeignCorporationForeign Corporation
ScorpS-Corp
PrivateCompanyWholly Owned
TrustTrust
SmllcSMLLC
IndividualIndividual

Income Type

ValueDescription
TaxableIncomeTaxable Income
UbiUBI
BothTaxableIncomeAndUbiBoth Taxable Income and UBI

Tax Form Type

ValueDescription
Form10401040
Form10411041
Form11201120
Form1120S1120S
Form10651065
UBI990TPFUBI 990-T/PF
UBI990TUBI 990-T
UBI990PFUBI 990-PF

State of Residence

ValueDescription
AlAlabama
AkAlaska
AzArizona
ArArkansas
CaCalifornia
CoColorado
CtConnecticut
DeDelaware
FlFlorida
GaGeorgia
HiHawaii
IdIdaho
IlIllinois
InIndiana
IaIowa
KsKansas
KyKentucky
LaLouisiana
MeMaine
MdMaryland
MaMassachusetts
MiMichigan
MnMinnesota
MsMississippi
MoMissouri
MtMontana
NeNebraska
NvNevada
NhNew Hampshire
NjNew Jersey
NmNew Mexico
NyNew York
NycNew York City
NcNorth Carolina
NdNorth Dakota
OhOhio
OkOklahoma
OrOregon
PaPennsylvania
RiRhode Island
ScSouth Carolina
SdSouth Dakota
TnTennessee
TxTexas
UtUtah
VtVermont
VaVirginia
WaWashington
DcWashington D.C.
WvWest Virginia
WiWisconsin
WyWyoming
NoneNo State
ForeignForeign

Validation Rules

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.

Get List of Instances

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>'

Headers

Header NameTypeDescription
X-K1X-AccountStringRequired. Your account identifier.
X-K1X-TokenStringRequired. Authorization token.
Content-TypeStringShould be application/json.

Query Parameters

Parameter NameTypeRequiredDescription
taxYearIntegerYesThe tax year for which the instances are retrieved.

Response

The response is a list of json objects, structured as follows:

TypeDescription
idIntUnique identifier of the instance.
nameStringName of the instance.