Skip to main content
Version: 1.7.3

GetPdf

Retrieves 1094-C and 1095-C PDFs. The link for PDFs download will be sent via Webhook after the successful API call.

GET Form1095C/GetPdf 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission

Request Params

"Form1095C/GetPDF?SubmissionId=96c3747a-db6d-4d10-aeb2-4daa80516f9e"

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
FormACAPdfRecordsobject[]FormACAPdfRecords Object
    RecordIdGuidUnique identifier of a record
    FormACApdfstringIt will show the message that the request has been successfully received to generate the PDF and you will be notified with the URL to download the PDF.
Errorsobject[]Shows detailed error information
    IdstringReturns the validation error code
    NamestringName of the validation error
    MessagestringDescription of the validation error

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "96c3747a-db6d-4d10-aeb2-4daa80516f9e",
"FormACAPdfRecords": {
"RecordId": "b2d29cf8-ccb1-4c9b-81c2-26c0956ce2f0",
"FormACApdf": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
},
"Errors": null
}