Skip to main content
Version: 1.7.3

Transmit

Transmits the Form 1099-Misc correction return to the IRS. You can Transmit a return successfully only if there are no validation errors in the return.

POST Form1099MiscCorrection/Transmit 
Run in Postman

Request Body

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

Request JSON

{
"SubmissionId": "12d5f304-6bbc-4438-a9bc-c0631debc8fc",
"RecordIds": "f5b9effa-0b00-4ad1-92a2-47d7eb53c93f"
}

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
Form1099RecordsobjectPulls the Form 1099 Misc correction records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 Misc correction 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 the Return Transmission
        StateReturnsobject[]Returns collection of state returns information
            StateCdstringReturns the state code of the state for which the return is filed.
            StatusstringReturns the record status of the state return.
            StatusTsstringDate and time of the return created.
            InfostringReturns the information about the state for which we are not supporting state filing.
        OnlineAccessobjectReturns the Email address for whom the online access to be given and Status of online access.
            StatusstringReturns status of online access for Form 1099 Misc correction return.
            EmailstringEmail address for whom the online access to be given.
            InfostringInformation about the online access service.
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 1099 Misc correction.
            StatusstringReturns the status of postal order.
            StatusTsstringReturns the date and time of the postal order created.
            InfostringReturns the information about Postal mailing service.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 1099 Misc correction 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
        Errorsobject[]Shows detailed error information
            IdstringReturns the validation error Id
            NamestringName of the validation error
            MessagestringDescription of the validation error

Response JSON

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "12d5f304-6bbc-4438-a9bc-c0631debc8fc",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "f5b9effa-0b00-4ad1-92a2-47d7eb53c93f",
"Status": "Transmitted",
"StatusTs": "2023-12-18 08:00:10 -05:00",
"StateReturns": null,
"OnlineAccess": null,
"Postal": {
"Status": "RECEIVED",
"StatusTs": "2023-12-18 08:00:10 -05:00",
"Info": null
}
}
],
"ErrorRecords": null
},
"Errors": null
}