Status
Status
This endpoint can be used to retrieve the status of ACA 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 acaform/status Request Body
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | A unique identifier of a submission. |
| RecordIds | Guid | A 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
| Field | Type | Description |
|---|---|---|
| SubmissionId | Guid | Unique identifier generated for the submission. |
| FormACARecords | object[] | Returns the Status of processed records along with their federal, state, and distribution statuses. |
| SuccessRecords | Object[] | It will show the detailed information about the success status of Form ACA Records. |
| RecordId | Guid | Unique identifier generated for the submitted tax form record. |
| FormType | string | Denotes the type of the form. |
| TaxYear | string | Tax year of Form 1095-B was filed. |
| AttachedCnt | number | Number of 1095-B Forms Filed with this return. |
| Form1095BRecords | Object[] | Represents the collection of Form 1095-B records associated with the submission. |
| Form1095SeqNum | String | Unique sequence number used to identify the Form 1095-B record within the submission. |
| Form1095BId | String | Unique identifier assigned to the Form 1095-B record. |
| EmployeeId | Guid | An 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. |
| EmployeeNm | string | Name of the employee. |
| FederalStatus | object | Returns the federal filing status details for the record. |
| StatesStatus | object[] | Returns the filing status details for each state where the return was filed. |
| StateCd | string | Two-letter state code for the filing jurisdiction. |
| StatusCd | string | Status code representing the state filing result. |
| Status | string | Current filing status for the specified state. |
| Info | string | Detailed description of the state filing status. |
| StatusTs | string | Date and time when the state filing status was last updated. |
| Distribution | object | Returns the distribution details for the recipient copy of the form. |
| DistributionType | string | Specifies the distribution method used to deliver the recipient copy (for example POSTAL_AND_ONLINE). |
| PostalStatus | object | Returns the postal delivery status information. |
| PostalType | string | Specifies the postal delivery service used (for example, USPS_FIRST_CLASS). |
| Code | string | Status code representing the postal delivery status. |
| Status | string | Current postal delivery status (for example, ASSUMED_DELIVERED, IN_TRANSIT). |
| Info | string | Detailed description of the postal delivery status. |
| StatusTs | string | Date and time when the postal delivery status was last updated. |
| OnlineAccessStatus | object | Returns the online access status information for the recipient. |
| string | Email address provided for recipient online access. | |
| Code | string | Status code representing the online access status. |
| Status | string | Current status of online access (for example, VIEWED_FORM, EMAIL_SENT). |
| Info | string | Detailed description of the online access status. |
| StatusTs | string | Date and time when the online access status was last updated. |
| Errors | object[] | Returns top-level validation or processing errors. Returns null when the request is processed successfully. |
| Id | string | Validation or processing error code. |
| Name | string | Name of the field or validation rule that caused the error. |
| Message | string | Detailed description of the error and guidance for resolving it. |
| CreatedTs | string | |
| LastUpdatedTs | string | |
| ErrorRecords | object[] | It will show the detailed information about the error status of the Form ACA forms Records. |
| Errors | object[] | Shows detailed error information |
| Id | string | Returns the validation error ID |
| Name | string | Name of the validation error |
| Message | string | Description of the validation error |
Payload
Request Params
| Sample | Description | Action |
|---|---|---|
| Sample 1 | Get the status of a Form ACA return using SubmissionId and RecordIds. |
Sample 1
acaform/status?SubmissionId=4fc3dc91-64fe-4877-9193-7c520c21896a&RecordIds=53eb195d-4914-4a14-9348-251a55909c1d
Response JSON
| Response | Description | Action |
|---|---|---|
| 200 | Success Response - You'll get the below response when the request is processed successfully. | |
| 400 | Bad Request Response - You'll get the below response when your API requests contain any validation errors. |
Response: 200
{
"SubmissionId": "4fc3dc91-64fe-4877-9193-7c520c21896a",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "53eb195d-4914-4a14-9348-251a55909c1d",
"FormType": "Form1095B",
"TaxYear": "2026",
"AttachedCnt": 1,
"Form1095BRecords": [
{
"Form1095SeqNum": "1",
"Form1095BId": "1b3ab0c6-227d-42a9-8426-8043f4a743fd",
"EmployeeId": "af317d7b-0a71-4b67-9c81-834cbd4c42c4",
"EmployeeNm": "David R Thompson",
"FederalStatus": {
"StatusCd": "FED-001",
"Status": "CREATED",
"Info": null,
"StatusTs": "2026-08-24T06:21:56-04:00",
"Errors": null
},
"StatesStatus": null,
"Distribution": {
"DistributionType": "POSTAL_AND_ONLINE",
"PostalStatus": {
"PostalType": "USPS_FIRST_CLASS",
"Code": "POS-002",
"Status": "ORDER_RECEIVED",
"Info": "Handed off to USPS",
"StatusTs": "2026-08-24T06:22:00-04:00"
},
"OnlineAccessStatus": {
"Email": "david.thompson@sample.com",
"Code": "OA-003",
"Status": "ORDER_RECEIVED",
"Info": "Notification email sent",
"StatusTs": "2026-08-24T06:22:00-04:00"
},
"CreatedTs": "2026-08-24T06:14:51-04:00",
"LastUpdatedTs": "2026-08-24T06:21:56-04:00"
}
}
]
},
"ErrorRecords": null
},
"Errors": null
}