Skip to main content
Version: 1.7.3

Transmit

Transmit

This endpoint can be used to transmit Form 1099-NEC returns to the IRS.

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 1099-NEC form is transmitted, it cannot be edited or deleted.
POST Form1099NEC/Transmit 

Request Body

FieldTypeDescription
SubmissionIdGuidA unique identifier of a submission
RecordIdsGuid[]OptionalA unique identifier generated by TaxBandits when a 1099-NEC return is created. Mention the 1099-NEC 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
SubmissionIdGuidA unique identifier of a submission
Form1099RecordsobjectPulls the Form 1099-NEC records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of the Form 1099-NEC Records
        SequenceIdstringA unique reference ID for the submission that can be used to identify a particular record. The SequenceId will be returned in the response for your reference.
        RecordIdGuidA unique identifier of a record
        StatusstringReturns the status of the records.
        StatusTsstringDate and Time of the Return Transmission
        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 the postal mailing service for Form 1099-NEC.
            StatusstringReturns the status of the postal order.
            StatusTsstringReturns the date and time of the postal order created.
            InfostringReturns the information about the Postal mailing service.
        OnlineAccessobjectReturns the email address for whom the online access is to be given and the status of online access.
            StatusstringReturns the status of online access for the Form 1099-NEC return.
            EmailstringEmail address for whom the online access is to be given.
            InfostringInformation about the online access service.
        ScheduleFilingobjectReturns the date of the schedule filing.
            ScheduledOnstringDate when the return is scheduled to be filed with the IRS.
            InfostringInformation about the Schedule Filing service.
    ErrorRecordsobject[]It will show the detailed information about the error status of the Form 1099-NEC Records.
        SequenceIdstringA 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.
        RecordIdGuidA unique identifier of a record
        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 ID
    NamestringName of the validation error
    MessagestringDescription of the validation error
Request Json
SampleDescriptionAction
Sample 1
Give the SubmissionId and RecordId for the return that has to be transmitted.
Sample 1
{
"SubmissionId": "e88e7f1d-7ae5-43b6-99f6-38d85664035a",
"RecordIds": [
"63f0aaf2-7b35-487d-a003-0be8b522ef47"
]
}
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": "e88e7f1d-7ae5-43b6-99f6-38d85664035a",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "1",
"RecordId": "63f0aaf2-7b35-487d-a003-0be8b522ef47",
"Status": "Transmitted",
"StatusTs": "2025-08-23 02:02:19 -04:00",
"StateReturns": [
{
"StateCode": "WV",
"RecordStatus": "Transmitted"
},
{
"StateCode": "ID",
"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": "2023-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
}