Skip to main content
Version: 2.0.0

Delete

Delete

This endpoint permanently removes one or more recipients from TaxBandits. This action cannot be undone. Once deleted, the recipient and its associated data are no longer accessible.

Key Points

  • Multiple Deletion — Pass multiple RecipientId or PayeeRef in a single request to delete recipients in bulk.
  • IsForcedDelete — By default, deletion is blocked if the recipient has associated returns. Setting IsForcedDelete to TRUE removes this restriction. Use with caution.
  • Deactivate Instead — If you want to stop using a recipient without permanently deleting it, consider using the Deactivate endpoint instead.
DELETE recipient/delete

Request Params

FieldTypeDescription
RecipientIdGUIDTaxBandits-generated unique identifier for the recipient.
PayeeRefStringYour unique identifier for the recipient.
IsForcedDeleteBooleanOptional When TRUE, deletes the recipient even if tax forms are associated with it.

Response Body

FieldTypeDescription
RecipientIdGUIDTaxBandits-generated unique identifier for the recipient.
PayeeRefStringYour unique identifier for the recipient.
StatusStringStatus of the operation.
StatusTsStringDate and time the operation was completed.
ErrorsObject []Validation error details.
IdStringValidation error code.
NameStringName of the validation rule that failed.
MessageStringDescription of the error.
Request Params
SampleDescriptionAction
Sample 1
Delete a business using RecipientId, PayeeRef, and force delete flag.
Sample 1
recipient/delete?recipientId=b50601fd-90b8-4e4b-86ce-b87d2b11aa5c&payeeref=PAYEE774&isforceddelete=true
Response 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.
401
Unauthorized Response - You'll get the below response when your API requests don't contain valid authentication credentials.
Response: 200
{
"RecipientId": "9ad0c924-6469-4030-a1be-0a08248a1066",
"PayeeRef": "DAsdcccdev1",
"Status": "DELETED",
"StatusTs": "2026-04-29 10:10:40 -04:00",
"Errors": null
}