Reactivate
Reactivate
This endpoint restores a previously deactivated recipient to active status. Once reactivated, the recipient can immediately be used for new filings. All recipient data, DBA details, and configuration settings are retained — no additional setup is required.
GET recipient/reactivateRequest Body
| Field | Type | Description |
|---|---|---|
| RecipientId | GUIDs | TaxBandits-generated unique identifier for the recipient. |
| PayeeRef | String | Your unique identifier for the recipient. |
Response Body
| Field | Type | Description |
|---|---|---|
| SuccessRecords | Object [] | Records that were processed successfully. |
| RecipientId | GUID | TaxBandits-generated unique identifier for the recipient. |
| PayeeRef | String | Your unique identifier for the recipient. |
| Status | String | Status of the operation. |
| StatusTs | String | Date and time the operation was completed. |
| ErrorRecords | Object [] | Records that failed to process. |
| RecipientId | GUID | Identifier of the failed recipient. |
| PayeeRef | String | Your unique identifier for the recipient. |
| 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. |
| Errors | Object [] | Top-level request errors if the entire request cannot be processed. |
| Id | String | Validation error code. |
| Name | String | Name of the validation rule that failed. |
| Message | String | Description of the error. |
Request JSON
recipient/reactivate?recipientIds=d67539c3-0603-4fb7-9a29-3ae15339269a
Response JSON
{
"SuccessRecords": [
{
"RecipientId": "d67539c3-0603-4fb7-9a29-3ae15339269a",
"PayeeRef": "PAYEE001",
"Status": "REACTIVATED",
"StatusTs": "2026-07-09 06:22:46 -04:00"
}
],
"ErrorRecords": null,
"Errors": null
}