Skip to main content
Version: 1.7.3

UploadForm8453EMP

Once the recipient signs the 8453 EMP form, upload the file using the UploadForm8453EMP method. While uploading the form, use the specific RecordId as a qualifier.  

If the RecordId does not match with the form, then error will occur while uploading.

POST Form941/UploadForm8453EMP 
Run in Postman

Request Body

FieldTypeDescription
RecordIdGuidUnique identifier of a record
Form8453EMPPdfbyte[]Byte array of Form-8453 pdf

Request JSON

{
"RecordId": "eed7cf65-088e-4eba-800a-dcd54c0d05bb",
"Form8453EMPPdf":"QEA="
}

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
Form8453EMPPdfstringPulls Form 8453 Pdf success and error status messages
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.

Response JSON

{
"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
}