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
Request Params
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
Request Params
"Form1095C/GetPDF?SubmissionId=96c3747a-db6d-4d10-aeb2-4daa80516f9e"
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 |
FormACAPdfRecords | object[] | FormACAPdfRecords Object |
RecordId | Guid | Unique identifier of a record |
FormACApdf | string | It 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. |
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": "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
}