GetPDF
GetPDF
This endpoint can be used to generate the PDF copies of the completed Form 1099-DA. You can request the PDFs using any of the following:
- SubmissionId only – To generate PDFs for all records under the submission.
- SubmissionId with RecordIds – To generate PDFs for specific recipient records.
How it works
-
Once the request is processed successfully, a webhook will be triggered containing the download link(s).
-
A separate ZIP file will be generated for each record. Each ZIP file will include copies of the recipient’s form.
-
The files are not encrypted and can be downloaded directly. For security, the download link will expire in 24 hours after Webhook delivery.
-
You can also choose the TIN masking option, allowing the recipient’s TIN to be either masked or unmasked based on your preference.
GET Form1099DA/GetPDF Request Params
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier of a submission |
| RecordIds | Guid[] | Optional Unique identifier of a records. |
| TINMaskType | string | Optional Choose the masking type of your Recipient's TIN on the 1099-DA PDF. MASKED - The Recipient's TIN will be masked in the PDF. Only the last 4 digits of the TIN can be read.UNMASKED - The Recipient's TIN will not be masked in the PDF. To protect the PII information of the Recipient, thePDF with Unmasked TIN is password protected. Use the Recipient's TIN (password) to open the protected file.BOTH - TwoPDFs will be delivered for each Recipient.One with Masked TIN and the other with Unmasked TIN. The PDF with Unmasked TINwill be password protected.Allowed values"MASKED", "UNMASKED", "BOTH" |
Response Body
| Field | Type | Description |
|---|---|---|
| StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
| StatusName | string | Name of the status code |
| StatusMessage | string | Detailed status message |
| SubmissionId | Guid | Unique identifier of a submission |
| Form1099DivRecords | object[] | Collection of Form 1099-DA records for which the PDF will be successfull delivered |
| RecordId | Guid | Unique identifier of a record |
| Message | string | Provides additional information regarding the PDF delivery. |
| 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 |
| Type | string | Type of validation error |
Request Params
"Form1099DA/GetPDF?SubmissionId=efacde0b-93e4-4327-84f5-f003b14fdc47&RecordIds=01132f6d-ef4a-4014-817e-94a5a19bd52b,eb39714e-f653-4c4d-a53c-07f24f9a9dj5&TINMaskType=UNMASKED"
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call"
"SubmissionId": "efacde0b-93e4-4327-84f5-f003b14fdc47",
"Form1099DARecords": [
{
"RecordId": "7629fc38-5a6f-4b51-842e-b3058bc5a94c",
"Message": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
},
{
"RecordId": "c97de8be-f02a-455c-9c75-dc372da07cc6",
"Message": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
],
"Errors": null
}