Skip to main content
Version: 2.0

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/reactivate

Request Body

FieldTypeDescription
RecipientIdGUIDsTaxBandits-generated unique identifier for the recipient.
PayeeRefStringYour unique identifier for the recipient.

Response Body

FieldTypeDescription
SuccessRecordsObject []Records that were processed successfully.
RecipientIdGUIDTaxBandits-generated unique identifier for the recipient.
PayeeRefStringYour unique identifier for the recipient.
StatusStringStatus of the operation.
StatusTsStringDate and time the operation was completed.
ErrorRecordsObject []Records that failed to process.
RecipientIdGUIDIdentifier of the failed recipient.
PayeeRefStringYour unique identifier for the recipient.
ErrorsObject []Validation error details.
IdStringValidation error code.
NameStringName of the validation rule that failed.
MessageStringDescription of the error.
ErrorsObject []Top-level request errors if the entire request cannot be processed.
IdStringValidation error code.
NameStringName of the validation rule that failed.
MessageStringDescription 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
}