Skip to main content
Version: 1.7.1

Status

GET Form1099SA/status 
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
RecordIdGuidOptionalAn unique identifier generated by TaxBandits when a 1099 SA return is created.

Request Params

Form1099SA/Status?RecordIds=11944cac-7aa0-47e8-951c-5454e38cda4e&SubmissionId=556e41eb-0ccb-4aeb-b486-19743d3a1c32

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
BusinessIdGuidUnique identifier of a Business.
PayerRefstringUnique identifier of the payer.
Form1099SATypestringDenotes the type of 1099SA form.
Form1099SARecordsobjectPulls Form 1099SA records with Success and Error statuses
    SuccessRecordsobject[]It will show detailed information about the success 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.
        RecordIdGuidA unique identifier generated by TaxBandits when a 1099SA return is created.
        RecipientIdGuidAn unique identifier generated by TaxBandits for a Recipient when a 1099SA return is created. You can use this id for your future reference to update.
        FederalReturnobjectReturns the record status and StatusTs of federal return.
            StatusstringReturns the record status.
            StatusTsstringReturns date and time of return created.
            InfostringReturns information about the Federal Filing service.
            Errorsobject[]Shows error information in state returns of Form 1099SA.
        PostalobjectReturns the status and StatusTs of postal mailing service for Form 1099SA .
            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 1099SA 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 IRS.
            InfostringInformation about Schedule Filing 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",
"BusinessId": "04485bd3-713a-4dac-b460-4e9b3fd65473",
"PayerRef": "PAY123",
"Form1099Type": "SA",
"Form1099Records": {
"SuccessRecords": [
{
"SequenceId": "001",
"RecordId": "11944cac-7aa0-47e8-951c-5454e38cda4e",
"RecipientId": "9dccfc65-e8ec-47e7-a220-3660df1959b7",
"AccountNum": null,
"FederalReturn": {
"Status": "TRANSMITTED",
"StatusTs": "2024-01-11 00:27:28 -05:00",
"Info": null,
"Errors": null
},
"Postal": {
"Status": "CREATED",
"StatusTs": "2024-01-11 00:27:28 -05:00",
"Info": null
},
"OnlineAccess": {
"Status": "ORDER_RECEIVED",
"Email": "sample1@bodeem.com",
"Info": null
},
"ScheduleFiling": {
"ScheduledOn": null,
"Info": "This service will be available soon"
}
}
],
"ErrorRecords": null
},
"Errors": null
}