Skip to main content
Version: 1.7.0

GetPDF

This method will generate the completed Form 1099-B in a Pdf format using the BusinessId and RecordID. After a successful API call, a Webhook will be sent with a link to download the PDFs.

GET Form1099B/GetPDF 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdsGuid[]Optional Unique identifier of a records.
TINMaskTypestringOptional Choose the masking type of your Recipient's TIN on the 1099-B 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, the PDF with Unmasked TIN is password protected. Use the Recipient's TIN (password) to open the protected file.BOTH - Two PDFs will be delivered for each Recipient. One with Masked TIN and the other with Unmasked TIN. The PDF with Unmasked TIN will be password protected.
Allowed values

"MASKED", "UNMASKED", "BOTH"

Request Params

"Form1099B/GetPdf?SubmissionId=3352a6aa-e22a-4d9b-bfed-8dc6e80d3d7d&RecordIds=55f703fc-4456-4ca6-ab5a-004cf714a95f&TINMaskType=UNMASKED"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
SubmissionIdGuidUnique identifier of a submission
Form1099BRecordsobject[]Collection of Form 1099-B records for which the PDF will be successfully delivered
    RecordIdguidUnique identifier of a record
    MessagestringProvides additional information regarding the PDF delivery.
Errorsobject[]Shows detailed error information
    IdstringReturns the validation error code
    NamestringName of the validation error
    MessagestringDescription of the validation error
    TypestringType of validation error

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "3352a6aa-e22a-4d9b-bfed-8dc6e80d3d7d",
"Form1099BRecords": [
{
"RecordId": "55f703fc-4456-4ca6-ab5a-004cf714a95f",
"Message": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
],
"Errors": null
}