GetPDF
Request a PDF download of 943 to be made available through Webhooks
GET Form943/GetPDF
Request Parameters
Field | Type | Description |
---|---|---|
SubmissionId | string | Unique identifier of a submission |
RecordIds | string | Optional List of record Ids to be downloaded. |
Response Parameters
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 |
Form943pdfRecords | object[] | Form943pdfRecords Object |
  RecordId | Guid | Unique identifier of a record |
  Form943pdf | string | Returns the record ID with success message after generating a PDF. |
Errors | object[] | Shows detailed error information. |
  Code | 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 JSON
Form943/GetPDF?SubmissionId=7f9cb1ab-f90b-4358-ae5f-acfe19617d96&RecordIds=22af7b4b-42f2-4e68-a9ac-743d2fd76636
Response JSON
{ "StatusCode": 200, "StatusName": "Ok", "StatusMessage": "Successful API call", "SubmissionId": "7f9cb1ab-f90b-4358-ae5f-acfe19617d96", "Form943pdfRecords": [ { "RecordId": "22af7b4b-42f2-4e68-a9ac-743d2fd76636", "Form943pdf": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF." } ], "Errors": null}