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 Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
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 |
Request JSON
Form1095C/GetPDF?SubmissionId=f6683d71-448c-4a69-aa17-e58c6ef085ab
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
}