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
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Mention the 1099-B returns Submission ID that you want to GetPdf |
RecordIds | Guid[] | Optional Mention the 1099-B returns Record ID that you want to GetPdf. Multiple RecordIds GetPdf under the same Submission can be received by sending the RecordIds comma separated. |
TINMaskType | string | Optional 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
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 |
Form1099BRecords | object[] | Collection of Form 1099-B records for which the PDF will be successfully 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 |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"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
}