Skip to main content
Version: 2.0

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

FieldTypeDescription
BusinessIdGUIDsTaxBandits-generated unique identifier of the business
PayerRefStringYour unique identifier for the business.

Response Body

FieldTypeDescription
SuccessRecordsObject []Records that were processed successfully.
BusinessIdGUIDTaxBandits-generated unique identifier of the business.
PayerRefStringYour unique identifier for the business.
StatusStringStatus of the operation.
StatusTsStringDate and time the operation was completed.
ErrorRecordsObject []Records that failed to process.
BusinessIdGUIDIdentifier of the failed business.
PayerRefStringYour unique identifier for the business.
ErrorsObject []Validation error details.
IdStringValidation error code.
NameStringName of the validation rule that failed.
MessageStringDescription of the error.
Request Json
SampleDescriptionAction
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
}