Get DIDs
This request returns a list of DIDs.
get | /dids |
Sample Request
A sample GET request to retrieve a list of DIDs that match the criteria in the request URL. The request can include query parameters to filter, sort, and paginate the results.
> Returns DIDs matching the criteria in the request URL
```shell
curl -X GET \
'https://api.carrierx.com/conference/v2/dids' \
-u 'conference_user_123:qwerty123'
Sample Response
200
response code with a list of DID objects:
{
"count": 1,
"has_more": false,
"items": [
{
"account_sid": "a1f38bf7-5879-49c1-be72-50ffa7f249a6",
"properties": {},
"call_flow_sid": "fb2b69b1-6998-4cdc-b04c-a267c585f767",
"country_code": "USA",
"did_group_sid": "ea1d0f8d-4f2d-4437-a627-694a23a2d568",
"did_sid": "022aa786-2c40-484f-9a36-2a51e84579d6",
"in_country_format": "(516) 206-5919",
"international_format": "+1 516-206-5919",
"phonenumber": "15162065919"
}
],
"limit": 10,
"offset": 0,
"pagination": {},
"total": 1
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.