Skip to main content
Version: 2.0.0

Status

Status

This endpoint can be used to retrieve the status of 1099 returns transmitted via the TaxBandits API. Provide the SubmissionId and RecordId, and the response will return the status of federal filing, state filing, postal mailing, and online access.

GET acaformutility/status 

Request Body

FieldTypeDescription
SubmissionIdGuidA unique identifier of a submission.
RecordIdsGuidA unique identifier generated by TaxBandits when a return is created. Mention the return's Record ID that you want to get the status.

Response Body

FieldTypeDescription
SubmissionIdGuidUnique identifier generated for the submission.
FormACARecordsobject[]Returns the Status of processed records along with their federal, state, and distribution statuses.
SuccessRecordsObject[]It will show the detailed information about the success status of Form ACA Records.
RecordIdGuidUnique identifier generated for the submitted tax form record.
FormTypestringDenotes the type of the form.
TaxYearstringTax year of Form 1095-B was filed.
AttachedCntnumberNumber of 1095-B Forms Filed with this return.
Form1095BRecordsObject[]Represents the collection of Form 1095-B records associated with the submission.
Form1095SeqNumStringUnique sequence number used to identify the Form 1095-B record within the submission.
Form1095BIdStringUnique identifier assigned to the Form 1095-B record.
EmployeeobjectContains EmployeeId, EmployeeName, and SSN information of the Employee for whom the 1095-B is filed.
EmployeeIdGuidAn unique ID generated by TaxBandits after the return is created and will be returned in the Response. You can use this ID for your future reference to Update.
EmployeeNmGuidName of the employee.
FederalStatusobjectReturns the federal filing status details for the record.
CodestringStatus code representing the federal filing result.
StatusstringCurrent status of the federal filing (for example, ACCEPTED, REJECTED).
MessagestringDetailed description of the federal filing status.
StatusTsstringDate and time when the federal filing status was last updated.
StatesStatusobject[]Returns the filing status details for each state where the return was filed.
StateCdstringTwo-letter state code for the filing jurisdiction.
StatusCdstringStatus code representing the state filing result.
StatusstringCurrent filing status for the specified state.
MessagestringDetailed description of the state filing status.
StatusTsstringDate and time when the state filing status was last updated.
DistributionobjectReturns the distribution details for the recipient copy of the form.
DistributionTypestringSpecifies the distribution method used to deliver the recipient copy (for example POSTAL_AND_ONLINE).
PostalStatusobjectReturns the postal delivery status information.
PostalTypestringSpecifies the postal delivery service used (for example, USPS_FIRST_CLASS).
CodestringStatus code representing the postal delivery status.
StatusstringCurrent postal delivery status (for example, ASSUMED_DELIVERED, IN_TRANSIT).
InfostringDetailed description of the postal delivery status.
StatusTsstringDate and time when the postal delivery status was last updated.
OnlineAccessStatusobjectReturns the online access status information for the recipient.
EmailstringEmail address provided for recipient online access.
CodestringStatus code representing the online access status.
StatusstringCurrent status of online access (for example, VIEWED_FORM, EMAIL_SENT).
InfostringDetailed description of the online access status.
StatusTsstringDate and time when the online access status was last updated.
Errorsobject[]Returns top-level validation or processing errors. Returns null when the request is processed successfully.
IdstringValidation or processing error code.
NamestringName of the field or validation rule that caused the error.
MessagestringDetailed description of the error and guidance for resolving it.
CreatedTsstring
LastUpdatedTsstring
ErrorRecordsobject[]It will show the detailed information about the error status of the Form ACA forms Records.
Errorsobject[]Shows detailed error information
IdstringReturns the validation error ID
NamestringName of the validation error
MessagestringDescription of the validation error
Request Params
SampleDescriptionAction
Sample 1
Query Params - Get status using SubmissionId and RecordIds.
Sample 1
ACAForm/Status?SubmissionId=9d71ae45-df5f-49f7-86f8-e88f54132fa
Response JSON
ResponseDescriptionAction
200
Success Response - This is a sample response for successful API requests.
Response: 200
{
"SubmissionId": "e50c27b8-631c-45f0-be19-f786fc69ba60",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "cfd6fe66-ac9f-49f7-b8a3-2d064abeeb9b",
"FormType": "Form1095B",
"TaxYear": "2026",
"AttachedCnt": 1,
"Form1095BRecords": [
{
"Form1095SeqNum": "1",
"Form1095BId": "d4e74407-b4e4-4a85-aec3-e75fe9f687b6",
"EmployeeId": "cc3e409b-c34f-492b-ac1a-2a5333e823b4",
"EmployeeNm": "Steve Michal Waugh",
"FederalStatus": {
"StatusCd": "FED-002",
"Status": "TRANSMITTED",
"Info": "Transmitted to IRS",
"StatusTs": "2026-01-25T09:00:00-05:00"
},
"StatesStatus": [
{
"StateCd": "AZ",
"StatusCd": "ST-002",
"Status": "TRANSMITTED",
"Info": "Transmitted to AZ",
"StatusTs": "2026-01-25T09:01:12-05:00"
}
],
"Distribution": {
"DistributionType": "POSTAL_AND_ONLINE",
"PostalStatus": {
"PostalType": "USPS_FIRST_CLASS",
"Code": "POS-004",
"Status": "HANDED_OVER_TO_USPS",
"Info": "Handed off to USPS",
"StatusTs": "2026-01-26T14:30:00-05:00"
},
"OnlineAccessStatus": {
"Email": "shawn@sample.com",
"Code": "OA-003",
"Status": "EMAIL_SENT",
"Info": "Notification email sent",
"StatusTs": "2026-01-25T09:05:00-05:00"
},
"CreatedTs": "2026-01-02T02:17:04-05:00",
"LastUpdatedTs": "2026-01-26T14:30:00-05:00"
}
}
]
},
"ErrorRecords": null
},
"Errors": null
}