Skip to main content
Version: 1.7.3

RequestPDFURLs

RequestPDFURLs

POST Form1099DACorrection/RequestPdfUrls 

Request Body

FieldTypeDescription
SubmissionIdGuidOptional Unique identifier of an API submission. Use this node to request the PDFs under a particular submission. If you are going to request the PDFs using the RecordIds, then leave the SubmissionId blank or null.
RecordIdsobject[]Specify the list of RecordIds under this Array
    RecordIdGuidUnique identifier of the return.
CustomizationobjectIncludes PDF customizations
    TINMaskTypestringOptional Mention whether you want the TIN to be masked in the PDF. If masked, only the last digits of the SSN will be visible and the rest of the digits will be crossed (xxx-xx-1234).
Allowed values: "MASKED", "UNMASKED", "BOTH"

Response Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission.
Form1099DACorrectionRecordsobjectContains PDF URLs of the forms requested in the API request.
SuccessRecordsobject[]Shows the successful records for the given submission request.
RecordIdGuidUnique identifier of the return.
StatusstringStatus of the PDF in TaxBandits.
- Success - The PDF is generated and you can download it.
FilesobjectContains multiple copies of a particular return.
Copy1objectCopy 1: For State Tax Department
UnmaskedstringLink to download the Unmasked copy
UnmaskedPathstringThe storage path of the unmasked TIN
MaskedstringLink to download the Masked copy
MaskedPathstringThe storage path of the masked TIN
Copy2objectCopy 2: To be filed with recipient's state income tax return, when required.
UnmaskedstringLink to download the Unmasked copy
UnmaskedPathstringThe storage path of the unmasked TIN
MaskedstringLink to download the Masked copy
MaskedPathstringThe storage path of the masked TIN
CopyBobjectCopy B: For Recipient
UnmaskedstringLink to download the Unmasked copy
UnmaskedPathstringThe storage path of the unmasked TIN
MaskedstringLink to download the Masked copy
MaskedPathstringThe storage path of the masked TIN
CopyCobjectCopy C: For Payer
UnmaskedstringLink to download the Unmasked copy
UnmaskedPathstringThe storage path of the unmasked TIN
MaskedstringLink to download the Masked copy
MaskedPathstringThe storage path of the masked TIN
ErrorRecordsobject[]Contains the error records
RecordIdGuidUnique identification of the record.
StatusstringStatus of the error record.
- PDF_Not_Generated - PDF is yet to be generated. You will have to waitand send a new API request to get the PDF.- Not Transmitted - The return is not transmitted yet.- Invalid RecordId - Given record id is invalid
MessagestringDescription of each statuses
Errorsobject[]Lists the errors in the API call
IdstringReturns the error Id.
NamestringName of the validation error.
MessagestringDescription of the validation error.

Request Params

{
"SubmissionId": "4ac243d2-5686-45f7-acbe-048635803bd6",
"RecordIds": [
{
"RecordId": "e55a6438-08a7-4a29-a2ea-feaf9743980f"
}
],
"Customization": {
"TINMaskType": "Both"
}
}

Response Json

Success Response - This is a sample response for successful API requests.

{
"SubmissionId": "4ac243d2-5686-45f7-acbe-048635803bd6",
"Form1099DACorrectionRecords": {
"SuccessRecords": [
{
"RecordId": "e55a6438-08a7-4a29-a2ea-feaf9743980f",
"Status": "Success",
"Files": {
"CopyB": {
"Unmasked": "https://expressirsforms.s3.us-east-1.amazonaws.com/pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/u/copyb_1up_6239226.pdf",
"UnmaskedPath": "pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/u/copyb_1up_6239226.pdf",
"Masked": "https://expressirsforms.s3.us-east-1.amazonaws.com/pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/m/copyb_1up_6239226.pdf",
"MaskedPath": "pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/m/copyb_1up_6239226.pdf"
},
"CopyC": {
"Unmasked": "https://expressirsforms.s3.us-east-1.amazonaws.com/pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/u/copyc_1up_6239226.pdf",
"UnmaskedPath": "pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/u/copyc_1up_6239226.pdf",
"Masked": "https://expressirsforms.s3.us-east-1.amazonaws.com/pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/m/copyc_1up_6239226.pdf",
"MaskedPath": "pdfs/19d76efb-937b-45ed-a6d4-94fd787b3752/d0c34efb-9efe-4af3-91b9-06ea6f28ca01/1099/6239226/m/copyc_1up_6239226.pdf"
}
}
}
],
"ErrorRecords": null
},
"Errors": null
}