Skip to main content
Version: 1.7.3

Transmit

Transmit

Transmits the Form 943 to the IRS after validation.

The IRS has removed the COVID-related fields in Form 943 for tax year 2024. To refer to the documentation of Form 943 for tax year 2023,click here.

POST Form943/Transmit 

Request Body

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

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.
Form943RecordsobjectPulls the Form 943 records with Success and Error statuses.
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 943 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 943 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.
Errorsobject[]Shows detailed error information.
    CodestringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.
    TypestringType of validation error.

Request JSON

{
"SubmissionId": "e59dc3a7-a150-415a-b92d-13db7ba8ee62",
"RecordIds": [
"5ef362ae-ba83-45dc-868b-c7a0eab2920e"
]
}
Response JSON

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

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "e59dc3a7-a150-415a-b92d-13db7ba8ee62",
"Form943Records": {
"SuccessRecords": [
{
"SequenceId": "1",
"BusinessId": "4c989e5e-5b9a-44ed-a632-3247899a3f70",
"PayerRef": "payerref001",
"RecordId": "5ef362ae-ba83-45dc-868b-c7a0eab2920e",
"RecordStatus": "Transmitted",
"CreatedTs": "2025-03-21 06:56:57 -04:00",
"UpdatedTs": "2025-03-21 07:16:09 -04:00",
"Errors": null
}
],
"ErrorRecords": null
},
"Errors": null
}