Get DID Groups
This request returns a list of DID groups.
get | /did_groups |
Sample Request
A sample GET request to retrieve DID groups that match the criteria in the request URL. The request can include query parameters to filter, sort, and paginate the results.
curl -X GET \
'https://api.carrierx.com/conference/v2/did_groups' \
-u 'conference_user_123:qwerty123'
Sample Response
200
response code with a list of DID Group objects:
{
"count": 1,
"has_more": false,
"items": [
{
"account_sid": "a1f38bf7-5879-49c1-be72-50ffa7f249a6",
"properties": {},
"call_flow_sid": null,
"did_group_sid": "ea1d0f8d-4f2d-4437-a627-694a23a2d568",
"name": "N/A",
}
],
"limit": 10,
"offset": 0,
"pagination": {},
"total": 1,
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.