Get DIDs
This request will return a list of DIDs associated with the specific endpoint.
get | /dids |
Sample Request
A sample GET request to retrieve a list of DID objects:
curl -X GET \
'https://api.carrierx.com/conference/v1/dids' \
-u '[your_user_name]:[your_password]'
Sample Response
200
status code with a list of DID objects associated with the Conference endpoint:
{
"dids": [
{
"attributes": [],
"countryCode": "US",
"didGroupId": 219,
"id": 220,
"phoneNumber": "15162065319",
"state": -1
},
{
"attributes": [],
"countryCode": "US",
"description": "A test DID",
"didGroupId": 219,
"id": 221,
"phoneNumber": "15162065318",
"state": -1
}
],
"last": 1,
"offset": 0,
"total": 2
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.