DownloadForm8453EMP
This method will be used only if the Signature Type is given as “FORM 8453 EMP”. For example, if the reporting agent files Form 941 on behalf of the recipient, the recipient must sign the 941 Form. The 8453 form will be downloaded and sent to the recipient by the reporting agent. The recipient will sign the form, which must then be returned to the agent.
Using the Get method, download the Form 8453 EMP with reference to the RecordId.
Form 8453 EMP will be downloaded for the given RecordId, and it will be shared with the recipients.
GET Form941/DownloadForm8453EMP
Request Body
Field | Type | Description |
---|---|---|
RecordId | Guid | Unique identifier of a record. |
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. |
RecordId | Guid | Unique identifier of a record |
byte[] | Pulls the byte array of Form-8453 pdf records with Success and Error statuses | |
Errors | object[] | Shows detailed error information. |
Id | string | Returns the validation error id. |
Name | string | Name of the validation error. |
Message | string | Description of the validation error. |
Request JSON: To download the Form 8453 EMP, provide the RecordId of the specific recipient.
Form941/DownloadForm8453EMP?RecordId=eed7cf65-088e-4eba-800a-dcd54c0d05bb
Response JSON: After verifying the RecordId, Form 8453 EMP will be downloaded.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"RecordId": "eed7cf65-088e-4eba-800a-dcd54c0d05bb",
"Form8453EMPPdf": "QEA",
"Errors": null
}