Skip to main content
Version: 2.0.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 Params

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 Params
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
ResponseDescriptionAction
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.
Response: 200
{
"BusinessId": "e9bb00ee-1fe5-4af3-aba7-3470a676eefd",
"PayerRef": null,
"SuccessRecords": [
{
"DBAId": "5efd839b-76d0-4f1e-a2ac-7fff97673ac4",
"DBARef": "DBA1001",
"Status": "DELETED",
"StatusTs": "2026-08-18 09:56:54 -04:00"
}
],
"ErrorRecords": null,
"Errors": null
}