Skip to main content
Version: 1.7.3

Transmit

POST Form1099RCorrection/Transmit 
Run in Postman

Request Body

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

Request JSON

{
"SubmissionId": "80fac551-bd6a-4945-922e-6fa420272959",
"RecordIds": [
"16297d66-5dc6-4b6a-bb5c-d144918b3c71"
]
}

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 R correction records with Success and Error statuses
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 R 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 the state code and return status.
        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 R correction return.
            EmailstringEmail address for whom the online access to be given.
            InfostringInformation about the online access service.
    ErrorRecordsobject[]It will show the detailed information about the error status of Form 1099 R 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": "80fac551-bd6a-4945-922e-6fa420272959",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "16297d66-5dc6-4b6a-bb5c-d144918b3c71",
"Status": "Transmitted",
"StatusTs": "2024-01-10 06:00:06 -05:00",
"StateReturns": null,
"OnlineAccess": null
}
],
"ErrorRecords": null
},
"Errors": null
}