Skip to main content
Version: 1.7.3

Transmit

Use this method to transmit the 941-X returns to the IRS. Please note that a Transmitted return cannot be deleted.

POST Form941X/Transmit 
Run in Postman

Request Body

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

Request JSON

{
"SubmissionId": "25f5905c-3f24-4b46-affb-384ea9f2e895",
"RecordIds": [
"269bb882-30d0-4ded-bb93-00103246bef1"]
}

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.
Form941XRecordsobjectPulls the Form 941-X records with Success and Error statuses.
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 941-X Records.
        SequenceIdstringA unique number given by an inbound application to identify failed records.
        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 941-X Records.
        RecordIdGuidUnique identifier of a record.
        SequenceIdstringA unique number given by an inbound application to identify failed records.
        Errorsobject[]Shows detailed error information.
            IdstringReturns the validation error id.
            NamestringName of the validation error.
            MessagestringDescription of the validation error.
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",
"SubmissionId": "25f5905c-3f24-4b46-affb-384ea9f2e895",
"Form941XRecords": {
"SuccessRecords": [
{
"SequenceId": "002",
"RecordId": "269bb882-30d0-4ded-bb93-00103246bef1",
"RecordStatus": "Transmitted",
"CreatedTs": "2024-09-16 04:06:24 -04:00",
"UpdatedTs": "2024-09-16 04:08:27 -04:00",
"Errors": null
}
],
"ErrorRecords": null
},
"Errors": null
}