UploadForm8453EMP
Once the recipient signs the 8453 EMP form, use this endpoint to upload the file. While uploading the form, you must include the corresponding RecordId in the request.
Please make sure that you convert the PDF into a byte array encoded in base64 while uploading.
The IRS has removed the COVID-related fields in Form 941 for tax year 2024. To refer to the documentation of Form 941 for tax year 2023,click here.
POST Form941/UploadForm8453EMP
Request Body
Field | Type | Description |
---|---|---|
RecordId | Guid | Unique identifier of a record |
Form8453EMPPdf | byte[] | Byte array of Form-8453 pdf |
Request JSON
{
"RecordId": "eed7cf65-088e-4eba-800a-dcd54c0d05bb",
"Form8453EMPPdf":"QEA="
}
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 |
Form8453EMPPdf | string | Pulls Form 8453 Pdf success and error status messages |
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",
"RecordId": "eed7cf65-088e-4eba-800a-dcd54c0d05bb",
"Form8453EMPPdf": "Form 8453-EMP is uploaded to the return (record id: eed7cf65-088e-4eba-800a-dcd54c0d05bb)",
"Errors": null
}