Skip to main content

Tax Form Resources

Tax Form

taxForm is a JSON:API resource, top-level fields:

NameTypeDescription
idstringIdentifier of the tax form resource.
typestringType of the tax form resource. The value is always taxForm.
attributesJSON ObjectJSON object representing the tax form data.
relationshipsJSON:API RelationshipsDescribes relationships between the tax form resource and other resources (account and customer).

Attributes

NameTypeDescription
formTypestringThe type of the tax form (e.g., 1099-INT).
taxYearISO8601 Year stringThe tax year of the form, formatted YYYY, e.g "2023".

Relationships

NameTypeDescription
accountOptional. JSON:API RelationshipThe account to which the tax form was produced. Available only if the customer to which the form was produced for owns a single account.
accountsOptional. Array of JSON:API RelationshipThe accounts to which the tax form was produced. Only available if the customer to which the tax form was produced owns multiple accounts.
customerJSON:API RelationshipThe Customer the tax form belongs to.
Example Tax Form resource:
{
"type": "taxForm",
"id": "1",
"attributes": {
"formType": "1099-INT",
"taxYear": "2023"
},
"relationships": {
"customer": {
"data": {
"type": "customer",
"id": "10"
}
},
"account": {
"data": {
"type": "account",
"id": "1000"
}
}
}
}