RequestDraftPdfUrl
POST Form1099SA/RequestDraftPdfUrl
Request Body
Field | Type | Description |
---|---|---|
TaxYear | string | Optional Tax Year of the return. Specify only if you do not have the RecordId. Allowed values:"2023","2024" |
RecordId | Guid | Optional Specify the RecordId of the return. |
TINMaskType | string | Optional TIN Mask type on the TIN printed on the PDF. Allowed values: "MASKED", "UNMASKED" |
Business | object | Optional Collects the Business identifier TIN or TBS Business Id or PayerRef. This object information is required only if you do not have the RecordId |
BusinessId | Guid | Optional TaxBandits Unique Business Identifier. This ID is generated by TaxBandits after you create a business in your account using the Business endpoint. |
PayerRef | string | Optional Unique payer identifier assigned by the client. Size Range: 1 to 50 |
TINType | string | Optional TIN type of the Business TIN. Use this as an alternative for BusinessId or PayerRef. Allowed values:"SSN", "EIN" |
TIN | string | Optional Taxpayer Identification Number. Use this as an alternative for BusinessId or PayerRef. Size Range: 9-11 |
Recipient | object | Optional Collects the recipient's unique identifier. This object information is required only if you do not have the RecordId. |
PayeeRef | string | Optional An unique identifier for each recipient set by the client. Size Range: 1 to 50 |
RecipientId | Guid | Optional Unique Recipient Identifier generated by TaxBandits |
TINType | string | Optional TIN type of the Recipient’s TIN. Use this as an alternative for RecipientId or PayeeRef. Allowed values:"SSN", "EIN" |
TIN | string | Optional Taxpayer Identification Number. Use this as an alternative for RecipientId or PayeeRef. Size Range: 9-11 |
Request JSON
{
"TaxYear": "2024",
"RecordId": "f7b408fb-6e2a-443e-9214-ee0101f00ed6",
"TINMaskType": "MASKED",
"Business": {
"BusinessId": null,
"PayerRef": "PAY123",
"TINType": null,
"TIN": null
},
"Recipient": {
"RecipientId": "2eb001c6-161c-4428-b795-c8b75b7efeea",
"PayeeRef": null,
"TINType": null,
"TIN": null
}
}
Response Body
Field | Type | Description |
---|---|---|
RecordId | Guid | Unique identifier of the record |
RecipientId | Guid | Unique Recipient Identifier generated by TaxBandits |
PayeeRef | string | An unique identifier for each recipient set by the client. |
DraftPdfUrl | string | URL of the Draft PDF |
DraftPdfPath | string | Storage path of the draft PDF |
Errors | object[] | Shows detailed error information |
Id | string | Returns the validation error code |
Name | string | Name of the validation error |
Message | string | Description of the validation error |
Response JSON
{
"RecordId": "5ce0a501-ddcd-4b23-af7c-c836bc434bda",
"RecipientId": "ba15c63a-e191-4dbc-9156-457f0980052e",
"PayeeRef": null,
"DraftPdfUrl": "https://expressirsforms.s3.us-east-1.amazonaws.com/pdfs/c2d66a8c-3cf3-4dbc-9095-38b92fc58866/0927361d-25ec-47d5-9c37-7a239ec6a2fa/1099/19455581/d/copy_tbs_wm_1up_9455960000.pdf",
"DraftPdfPath": "pdfs/c2d66a8c-3cf3-4dbc-9095-38b92fc58866/0927361d-25ec-47d5-9c37-7a239ec6a2fa/1099/19455581/d/copy_tbs_wm_1up_9455960000.pdf",
"Error": null
}