Skip to main content
Version: 1.7.1

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=f6683d71-448c-4a69-aa17-e58c6ef085ab"

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": "f6683d71-448c-4a69-aa17-e58c6ef085ab",
"FormACAPdfRecords": {
"RecordId": "d3888fc3-fee0-4020-bd6d-2a3795beff37",
"FormACApdf": "We've successfully received your request to generate PDF. You will be notified with the URL to download the PDF."
}
"Errors": null
}