List Brands
gethttps://api.telnyx.com/10dlc/brandThis endpoint is used to list all brands associated with your organization.
curl -X GET \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_ API_KEY' \
'https://api.telnyx.com/10dlc/brand'
Parameters
In Query
displayName
string
optional
entityType
string
optional
state
string
optional
country
string
optional
page
integer
optional
Default:
1
recordsPerPage
integer
optional
Default:
10
Responses
200
Successful Response
Success Response
{
"records": [
{
"brandId": "4b206179-f731-8ab7-f19c-34e19d22ide9",
"entityType": "PRIVATE_PROFIT",
"companyName": "Example Company Inc.",
"displayName": "Example Company",
"email": "[email protected]",
"website": "www.examplecompany.com",
"createAt": "2021-03-08T17:57:48.801186",
"updatedAt": "2021-03-08T17:57:48.801186"
}
],
"page": 1,
"totalRecords": 1
}