Properties
| Name | Type | Description |
|---|---|---|
| accountHolderCode | string | The account holder code you provided when you created the account holder. |
| formType | string | Type of the requested tax form. For example, 1099-K. |
| year | integer | Applicable tax year in the YYYY format. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetTaxFormRequest",
"title": "GetTaxFormRequest",
"properties": {
"accountHolderCode": {
"description": "The account holder code you provided when you created the account holder.",
"type": "string"
},
"formType": {
"description": "Type of the requested tax form. For example, 1099-K.",
"type": "string"
},
"year": {
"description": "Applicable tax year in the YYYY format.",
"format": "int32",
"type": "integer"
}
},
"required": [
"accountHolderCode",
"formType",
"year"
],
"type": "object"
}