Skip to main content
Version: 1.7.1

Transmit

POST Form1099SA/Transmit 
Run in Postman

Request Body

FieldTypeDescription
SubmissionIdGuidAn unique identifier generated by TaxBandits when a 1099 SA return is created. Mention the 1099 SA return's Submission ID that you want to transmit.
RecordIdsGuid[]OptionalAn unique identifier generated by TaxBandits when a 1099 SA return is created. Mention the 1099 SA return's Record ID that you want to transmit.

Request JSON

{
"SubmissionId": "556e41eb-0ccb-4aeb-b486-19743d3a1c32",
"RecordIds": [
"11944cac-7aa0-47e8-951c-5454e38cda4e"
]
}

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
Form1099SARecordsobjectPulls the Form 1099 SA records with Success and Error statuses.
    SuccessRecordsobject[]It will show the detailed information about the success status of Form 1099 SA 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
        StateReturnsobjectReturns 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 1099 SA.
            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 1099 SA 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 1099SA 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
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": "556e41eb-0ccb-4aeb-b486-19743d3a1c32",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "11944cac-7aa0-47e8-951c-5454e38cda4e",
"Status": "Transmitted",
"StatusTs": "2024-01-11 00:27:28 -05:00",
"StateReturns": null,
"OnlineAccess": {
"Status": "ORDER_CREATED",
"Email": "sample1@bodeem.com",
"Info": "Recipient will receive an email with an unique URL to access their form online"
},
"Postal": {
"Status": "RECEIVED",
"StatusTs": "2024-01-11 00:27:28 -05:00",
"Info": null
}
}
],
"ErrorRecords": null
},
"Errors": null
}