Skip to main content
Version: 1.7.3

Transmit

Transmit

This endpoint can be used to transmit Form W-2 returns to the SSA/State Agencies.

Key points

  • Call this endpoint only after all validation errors are resolved. If errors exist, review and correct them before transmitting.
  • To transmit all returns under a Submission, provide only the SubmissionId in the request.
  • To transmit specific returns within a Submission, provide the SubmissionId along with the RecordIds of the returns as an array under the SubmissionId.
  • Once a W-2 form is transmitted, it cannot be edited or deleted.
POST FormW2/Transmit 

Request Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdsGuid[]An unique identifier generated by TaxBandits when a W2 return is created. Mention the W2 return's Record ID that you want to transmit.

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
FormW2RecordsobjectPulls the Form W-2 records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form W2 Records
        SequenceIdstringAn unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference.
        RecordIdGuidUnique identifier of a record
        StatusstringReturns the status of the records.
        StatusTsstringDate and time of return created.
        StateReturnsobject[]Returns the state code and return status.
            StateCodestringReturns the code of the state.
            RecordStatusstringReturns the status of the records.
        PostalobjectReturns the status and StatusTs of postal mailing service for Form W2.
            StatusstringReturns the status of postal order.
            StatusTsstringReturns the date and time of the postal order created.
            InfostringReturns the information about Postal mailing service.
        OnlineAccessobjectReturns the Email address for whom the online access to be given and Status of online access.
            StatusstringReturns status of online access for Form W2 return.
            EmailstringEmail address for whom the online access to be given.
            InfostringInformation about the online access service.
        ScheduleFilingobjectReturns the date of the schedule filing.
            ScheduledOnstringDate of the schedule filing to know when the return to be filed to the SSA.
            InfostringInformation about Schedule Filing service.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form W2 Records.
        RecordIdGuidUnique identifier of a record
        SequenceIdstringAn unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference.
        RejectedBystringReturns the information of who rejected the return.
        Errorsobject[]Shows detailed error information
            IdstringReturns the validation error id
            NamestringName of the validation error
            MessagestringDescription of the validation error
Request Json
{
"SubmissionId": "ef869fda-5562-41c8-b0d2-b61ef19a2f5a",
"RecordIds": [
"566e1623-3c07-4d15-9fcc-00cad9a3a5d5"
]
}
Response Json
ResponseDescriptionAction
200
Success Response - This is a sample response for successful API requests.
Response: 200
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "ef869fda-5562-41c8-b0d2-b61ef19a2f5a",
"FormW2Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "566e1623-3c07-4d15-9fcc-00cad9a3a5d5",
"Status": "Transmitted",
"StatusTs": "2025-08-06 10:32:38 -04:00",
"StateReturns": [
{
"StateCode": "IN",
"RecordStatus": "Transmitted"
},
{
"StateCode": "VT",
"RecordStatus": "Transmitted"
},
{
"StateCode": "PA",
"RecordStatus": "Transmitted"
},
{
"StateCode": "KS",
"RecordStatus": "Transmitted"
}
],
"OnlineAccess": {
"Status": "ORDER_CREATED",
"Email": "sample@bodeem.com",
"Info": "Recipient will receive an email with an unique URL to access their form online"
},
"Postal": {
"Status": "RECEIVED",
"StatusTs": "2025-08-09 06:09:28 -04:00",
"Info": null
},
"ScheduleFiling": {
"ScheduledOn": "01/25/2026",
"Info": "The return is scheduled on 01/25/2026"
}
}
],
"ErrorRecords": null
},
"Errors": null
}