DeleteDBA
DeleteDBA
This endpoint permanently removes a specific DBA name associated with a recipient. Once deleted, the DBA can no longer be used for any API requests.
DELETE recipient/deletedbaRequest Body
| Field | Type | Description |
|---|---|---|
| RecipientId | GUID | TaxBandits-generated unique identifier for the recipient. |
| PayeeRef | String | Your unique identifier for the recipient. |
| DBAId | GUID | TaxBandits-generated unique identifier for the DBA. |
| DBARef | String | Your unique identifier for the DBA. |
Response Body
| Field | Type | Description |
|---|---|---|
| RecipientId | GUID | TaxBandits-generated unique identifier for the recipient. |
| PayeeRef | String | Your unique identifier for the recipient. |
| DBAId | GUID | TaxBandits-generated unique identifier for the DBA. |
| DBARef | String | Your unique identifier for the DBA. |
| Status | String | Status of the deletion. |
| StatusTs | String | Date and time the deletion was completed. |
| 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. |
Request JSON
recipient/deletedba?recipientId=d67539c3-0603-4fb7-9a29-3ae15339269a&payeeref=PAYEE001&dbaid=9425a051-a2b9-4cf9-b853-e56246464b3f
Response JSON
{
"RecipientIds": "d67539c3-0603-4fb7-9a29-3ae15339269a",
"PayeeRefs": "PAYEE001",
"DBAId": "9425a051-a2b9-4cf9-b853-e56246464b3f",
"DBARef": "STS001",
"Status": "DELETED",
"StatusTs": "2026-07-09 11:01:27 -04:00",
"Errors": null
}