Skip to main content
Version: 1.7.3

GetPDF

GET Form944/GetPDF 

Request Params

FieldTypeDescription
SubmissionIdstringUnique identifier of a submission

Request Params

"Form944/getpdf?SubmissionId=71454e6b-fb3e-487a-9582-688214f03fb8"

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
Form944pdfRecordsobject[]Form944pdfRecords Object
    RecordIdGuidUnique identifier of a record
    SequenceIdstringAn unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference.
Size Range: 50
    Form944pdfstringReturns the record ID with success message after generating a PDF.
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error id.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "71454e6b-fb3e-487a-9582-688214f03fb8",
"Form944pdfRecords": [
{
"RecordId": "ed5279fc-7325-4438-80c2-20388b39d842",
"SequenceId": "001",
"Form944pdf": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
],
"Errors": null
}