Reactivate
Reactivate
This endpoint restores a previously deactivated business to active status. Once reactivated, the business can immediately be used for new filings. All recipient data, DBA details, and configuration settings are preserved — no additional setup is required.
GET business/reactivate Request Body
| Field | Type | Description |
|---|---|---|
| BusinessId | GUIDs | TaxBandits-generated unique identifier of the business |
| PayerRef | String | Your unique identifier for the business. |
Response Body
| Field | Type | Description |
|---|---|---|
| SuccessRecords | Object [] | Records that were processed successfully. |
| BusinessId | GUID | TaxBandits-generated unique identifier of the business. |
| PayerRef | String | Your unique identifier for the business. |
| Status | String | Status of the operation. |
| StatusTs | String | Date and time the operation was completed. |
| ErrorRecords | Object [] | Records that failed to process. |
| BusinessId | GUID | Identifier of the failed business. |
| PayerRef | String | Your unique identifier for the business. |
| Errors | Object [] | Validation error details. |
| Id | String | Validation error code. |
| Name | String | Name of the validation rule that failed. |
| Message | String | Description of the error. |
Request Json
| Sample | Description | Action |
|---|---|---|
| 200 | Success Response - This is a sample response for successful API requests. | |
| 400 | Bad Request Response - You'll get the below response when your API requests contain any validation errors. | |
| 300 | Multi-status Response - You'll get the below response when multiple statuses are included. | |
| 401 | Unauthorized Response - You'll get the below response when your API requests don't contain valid authentication credentials. |
{
"SuccessRecords": [
{
"BusinessId": "cb4f2035-7c19-4b24-abfa-18c871ec9acb",
"PayerRef": null,
"Status": "REACTIVATED",
"StatusTs": "2026-07-07 10:24:31 -04:00"
}
],
"ErrorRecords": null,
"Errors": null
}