Skip to main content

List Brands

GET 
/brand

This endpoint is used to list all brands associated with your organization.

Request

Query Parameters

    page Page

    Possible values: >= 1

    Default value: 1

    recordsPerPage Recordsperpage

    Default value: 10

    number of records per page. maximum of 500

    displayName Displayname
    entityType Entitytype
    state State
    country Country

Responses

200: Successful Response

422: Validation Error

Request samples


curl -L 'https://api.telnyx.com/10dlc/brand' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"records": [
{
"brandId": "4b206179-f731-8ab7-f19c-34e19d22ide9",
"tcrBrandId": "BBRAND1",
"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
}