Skip to main content

Tax Form Resources

Tax Form

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

NameTypeDescription
id RequiredstringIdentifier of the tax form resource.
type RequiredstringType of the tax form resource. The value is always taxForm.
attributes RequiredJSON ObjectJSON object representing the tax form data.
relationships RequiredJSON:API RelationshipsDescribes relationships between the tax form resource and other resources (account and customer).

Attributes

NameTypeDescription
formType RequiredstringThe type of the tax form (e.g., 1099-INT).
taxYear RequiredISO8601 Year stringThe tax year of the form, formatted YYYY, e.g "2023".

Relationships

NameTypeDescription
account RequiredOptional. 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.
accounts RequiredOptional. 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.
customer RequiredJSON: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"
}
}
}
}