DeleteDBA
DeleteDBA
This endpoint permanently removes a specific DBA name associated with a business. Once deleted, the DBA can no longer be used for W-9 requests, transactions, or recipient copy distribution.
DELETEbusiness/deletedbaRequest Body
| Field | Type | Description |
|---|---|---|
| BusinessId | Guid | TaxBandits-generated unique identifier of the business. |
| DBAId | Guid | TaxBandits-generated unique identifier of the DBA. |
| DBARef | string | Your unique identifier for the DBA. |
Response Body
| Field | Type | Description |
|---|---|---|
| BusinessId | GUID | TaxBandits-generated unique Identifier of the business. |
| PayerRef | String | Your unique identifier for the business. |
| SuccessRecords | Object [] | DBA records that were deleted successfully. |
| DBAId | GUID | TaxBandits-generated unique identifier of 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. |
| ErrorRecords | Object [] | DBA records that failed to delete |
| DBAId | GUID | Identifier of the failed DBA |
| DBARef | string | Your unique identifier for the DBA |
| Error | object [] | Details about the error |
| Name | string | Name of the validation rule that failed |
| ID | string | Validation error code |
| Message | string | Description of the error |
Request Json
| Sample | Description | Action |
|---|---|---|
| Sample 1 | Delete a DBA associated with a business using BusinessId, PayerRef, DBARef, and DBAId. |
Sample 1
Business/deletedba?businessId=519a84f4-5e56-496a-82f3-18f51fdf3d75&PayerRef=ABC123&DBARef=DBA1001&DBAId=b2c3d4e5-2222-3333-4444-555566667777
Response Json
| Sample | Description | Action |
|---|---|---|
| 200 | Success Response - This is a sample response for successful API requests. |
{
"BusinessId": "519a84f4-5e56-496a-82f3-18f51fdf3d75",
"PayerRef": "ABC123",
"SuccessRecords": [
{
"DBAId": "b2c3d4e5-2222-3333-4444-555566667777",
"DBARef": "DBA1001",
"Status": "DELETED",
"StatusTs": "2026-03-19T06:26:16-04:00"
}
],
"ErrorRecords": [
{
"DBAId": "b2c3d4e5-2222-3333-4444-888866667777",
"DBARef": "ABC123",
"Errors": [
{
"Id": null,
"Name": null,
"Message": null
}
]
}
]
}