Skip to main content
Version: 2.0.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
SampleDescriptionAction
Sample 1
Reactivate a recipient using RecipientIds and PayeeRefs.
Sample 1
recipient/reactivate?RecipientIds=d67539c3-0603-4fb7-9a29-3ae15339269a
Response Json
SampleDescriptionAction
200
Success Response - This is a sample response for successful API requests.
207
Multi-status Response - You'll get the below response when multiple statuses are included.
400
Bad Request Response - You'll get the below response when your API requests contain any validation errors.
401
Unauthorized Response- You'll get the below response when your API requests don't contain valid authentication credentials.
Response: 200
{
"SuccessRecords": [
{
"RecipientId": "d67539c3-0603-4fb7-9a29-3ae15339269a",
"PayeeRef": "PAYEE001",
"Status": "REACTIVATED",
"StatusTs": "2026-07-09 06:20:30 -04:00"
}
],
"ErrorRecords": null,
"Errors": null
}