ListDBA
ListDBA
This endpoint retrieves all DBA names associated with a specific recipient. Results are
paginated. Use the Page and
PageSize parameters to control how many records
are returned per request.
GET recipient/listdbaRequest Body
| Field | Type | Description |
|---|---|---|
| RecipientId | GUID | TaxBandits-generated unique identifier for the recipient. |
| PayeeRef | String | Your unique identifier for the recipient. |
| TIN | String | TIN number of the recipient. |
| TINType | String | TIN type of the recipient. |
| DBAId | GUID | Optional Filter by a specific DBA identifier. |
| DBARef | String | Optional Filter by your DBA reference. |
| Page | number | Page number to retrieve. Starts at 1. |
| PageSize | number | Number of DBA records per page. Maximum: 100 |
Response Body
| Field | Type | Description |
|---|---|---|
| RecipientId | GUID | TaxBandits-generated unique identifier for the recipient. |
| PayeeRef | String | Your unique identifier for the recipient. |
| DBADetails | Object [] | DBA details of the recipient. |
| DBANm | String | Name of the DBA. |
| DBARef | String | Your unique identifier for the DBA. |
| DBAId | GUID | TaxBandits-generated unique identifier for the DBA. |
| Address | Object | The address details of the DBA. |
| Address1 | String | Street address or post office box of the DBA. |
| Address2 | String | DBA's suite or apartment. |
| City | String | DBA's city. |
| ProvinceOrState | String | DBA's province or state name. |
| ZipCd | String | DBA's zip code. |
| Country | String | DBA's country. |
| CreatedTs | String | Date and time the DBA was created. |
| LastUpdatedTime | String | Date and time the DBA was last updated. |
| Page | number | Requested page number. |
| PageSize | number | Requested page size. |
| TotalRecords | number | Total number of DBA records for this recipient. |
| TotalPages | number | Total number of pages available. |
| Errors | Object [] | Top-level request errors if the entire request cannot be processed. |
| Id | String | Validation error code. |
| Name | String | Name of the validation rule that failed. |
| Message | String | Description of what went wrong. |
Request JSON
recipient/listdba?recipientId=d67539c3-0603-4fb7-9a29-3ae15339269a&payeeref=PAYEE001
Response JSON
{
"RecipientId": "d67539c3-0603-4fb7-9a29-3ae15339269a",
"PayeeRef": "PAYEE001",
"DBADetails": [
{
"DBANm": "Sunrise Tech Solutions Inc.",
"DBARef": "STS001",
"DBAId": "9425a051-a2b9-4cf9-b853-e56246464b3f",
"Address": {
"Address1": "123 Biscayne Blvd",
"Address2": "Suite 120",
"City": "Miami",
"ProvinceOrState": "FL",
"ZipCd": "33132",
"Country": "US"
},
"CreatedTime": "2026-07-09 06:46:40 -04:00",
"LastUpdatedTime": "2026-07-09 06:46:40 -04:00"
},
{
"DBANm": "Smith Consulting",
"DBARef": "SC001",
"DBAId": "a32b351f-00b6-4639-a1ec-835b10ee8dae",
"Address": {
"Address1": "4500 N Lamar Blvd",
"Address2": "Suite 210",
"City": "Austin",
"ProvinceOrState": "TX",
"ZipCd": "78756",
"Country": "US"
},
"CreatedTime": "2026-07-08 07:36:04 -04:00",
"LastUpdatedTime": "2026-07-08 07:36:04 -04:00"
}
],
"Page": 1,
"PageSize": 100,
"TotalRecords": 2,
"TotalPages": 1,
"Errors": null
}