Skip to main content
Version: 1.7.0

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.

POST Form940/UploadForm8453EMP 
Run in Postman

Request Body

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

Request JSON

{
"RecordId": "22af7b4b-42f2-4e68-a9ac-743d2fd76636",
"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 Pdfs with success and error statuses.
Errorsobject[]Shows detailed error information.
    CodestringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.
    TypestringType of validation error.

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"RecordId": "22af7b4b-42f2-4e68-a9ac-743d2fd76636",
"Form8453EMPPdf": "Form 8453-EMP is uploaded to the return (record id: 22af7b4b-42f2-4e68-a9ac-743d2fd76636)",
"Errors": null
}