Skip to main content
Version: 1.7.3

DownloadForm8453EMP

If you are a CPA, 3504 Agent, Paid Preparer, or Software provider filing Form 941-X on behalf of a client, you must obtain their signature on Form 941-X using Form 8453EMP.

Use this endpoint to download the 8453EMP Form (with reference to the RecordId) and send it to the client. The client, in turn, will sign the form and return it to you. You can then use the UploadForm8453Emp endpoint to upload the signed form to TaxBandits API.

note

In order to use this endpoint, you must have specified the Signature Type as “FORM_8453_EMP” in the Create request of Form 941-X.

The response will return the PDF in a byte array encoded in base64 in the response. You'll need to convert this byte array to a PDF file format. Below is an example code snippet for reference.

GET Form941X/DownloadForm8453EMP  
Run in Postman

Request Params

FieldTypeDescription
RecordIdGuidUnique identifier of a record

Request Params

"Form941X/DownloadForm8453EMP?RecordId=f89c7204-7dd9-4f98-8ecc-778d21891483"

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
Form8453EMPPdfbyte[]Pulls the byte array of Form-8453 pdf records with Success and Error statuses
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription 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",
"RecordId": "f89c7204-7dd9-4f98-8ecc-778d21891483",
"Form8453EMPPdf": "QEA",
"Errors": null
}