GetPDF
Retrieves 1099-NEC correction PDFs. The link for PDFs download will be sent via Webhook after the successful API call.
GET Form1099NecCorrection/GetPDF
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
RecordIds | Guid[] | Optional Unique identifier of a record. |
TINMaskType | string | Optional Choose the masking type of your Recipient's TIN on the 1099-NEC correction PDF. MASKED - The Recipient's TIN will be masked in the PDF. Only 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 PDF's 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
Form1099NecCorrection/GetPDF?SubmissionId=c62adc64-63d5-4b68-9cdc-5bd8fa812432&RecordIds=5c993bdd-fb5a-471d-8ef7-e6e90f4cf3c1&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 |
Form1099NecRecords | object[] | Collection of Form 1099-NEC correction 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 |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "c62adc64-63d5-4b68-9cdc-5bd8fa812432",
"Form1099NecRecords": [
{
"RecordId": "5c993bdd-fb5a-471d-8ef7-e6e90f4cf3c1",
"Message": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
],
"Errors": null
}