Skip to main content
Version: 1.7.3

Transmit

Transmits 940 forms to the IRS after validation.

POST Form940/Transmit 
Run in Postman

Request Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission.
RecordIdsGuid[]List of record Ids to be transmitted.

Request JSON

{
"SubmissionId": "adfaa49c-58c7-4e66-a2df-1258dad0a3e1",
"RecordIds": [
"9657e565-c91c-455e-ac2b-d9ef18d19db6"
]
}

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
SubmissionIdGuidUnique identifier of a submission.
Form940RecordsobjectPulls the Form 940 records with Success and Error statuses.
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 940 Records.
        SequencestringA unique number given by an inbound application to identify failed records.
        PayerRefstringUnique identifier of the payer.
        RecordIdGuidUnique identifier of a record.
        RecordStatusstringReturns the status of the records.
        CreatedTsstringDate and time of return created.
        UpdatedTsstringDate and time of return updated.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 940 Records
        RecordIdGuidUnique identifier of a record.
        SequencestringA unique number given by an inbound application to identify failed records.
        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

Success Response - This is a sample response for successful API requests.

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "adfaa49c-58c7-4e66-a2df-1258dad0a3e1",
"Form940Records": {
"SuccessRecords": [
{
"SequenceId": null,
"BusinessId": "906476cb-89da-48d3-97d9-90106114e4bf",
"PayerRef": "Snow001",
"RecordId": "9657e565-c91c-455e-ac2b-d9ef18d19db6",
"RecordStatus": "Transmitted",
"CreatedTs": "3/20/2025 5:26:20 AM",
"UpdatedTs": "3/20/2025 5:34:27 AM",
"Errors": null
}
],
"ErrorRecords": null
},
"Errors": null
}