Skip to main content
Version: 2.0

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

Request Body

FieldTypeDescription
BusinessIdGuidTaxBandits-generated unique identifier of the business.
DBAIdGuidTaxBandits-generated unique identifier of the DBA.
DBARefstringYour unique identifier for the DBA.

Response Body

FieldTypeDescription
BusinessIdGUIDTaxBandits-generated unique Identifier of the business.
PayerRefStringYour unique identifier for the business.
SuccessRecordsObject []DBA records that were deleted successfully.
DBAIdGUIDTaxBandits-generated unique identifier of the DBA.
DBARefstringYour unique identifier for the DBA.
StatusstringStatus of the deletion.
StatusTsstringDate and time the deletion was completed.
ErrorRecordsObject []DBA records that failed to delete
DBAIdGUIDIdentifier of the failed DBA
DBARefstringYour unique identifier for the DBA
Errorobject []Details about the error
NamestringName of the validation rule that failed
IDstringValidation error code
MessagestringDescription of the error
Request Json
SampleDescriptionAction
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
SampleDescriptionAction
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
}
]
}
]
}