Extend your software with TaxBandits IRS E-file API Integration

Skip to main content
Version: 1.7.0

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

FieldTypeDescription
RecordIdGuidUnique identifier of a record.

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
RecordIdGuidUnique identifier of a record
Pdfbyte[]Pulls the byte array of Form-8453 pdf records with Success and Error statuses
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error id.
    NamestringName of the validation error.
    MessagestringDescription 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
}