Get Call Flows
This request returns a list of call flows.
get | /call_flows |
Sample Request
A sample GET request to retrieve a list of call flows that match the criteria in the request URL. The request can include query parameters to filter, sort, and paginate the results.
> Returns call flows matching the criteria in the request URL
```shell
curl -X GET \
'https://api.carrierx.com/conference/v2/call_flows' \
-u 'conference_user_123:qwerty123'
Sample Response
200
response code with a list of Call Flow objects:
{
"count": 1,
"has_more": false,
"items": [
{
"properties": {
"call_mute_dtmf_binding": "*6",
"call_rolepin_dtmf_binding": "99",
"conference_announceparticipantcount_policy": "hpl",
"conference_entrytones_enabled": "on",
"conference_exittones_enabled": "on",
"conference_hold_dtmf_binding": "*3",
"conference_lock_dtmf_binding": "*7",
"conference_moh": "default",
"conference_moh_enabled": "on",
"conference_mute_dtmf_binding": "*5",
"conference_mute_menu_dtmf_binding": "95",
"conference_mute_policy": "l",
"conference_recording_dtmf_binding": "*9",
"conference_recording_enabled": "on",
"conference_start_how": "first",
"conference_start_wait": "360",
"conference_stop_how": "last",
"conference_stop_wait": "180",
"conference_welcomeprompt": "default",
"conference_welcomeprompt_enabled": "on",
"did_language": "en_US",
"did_prompt_serial": "001",
"did_welcomeprompt": "default"
},
"call_flow_sid": "665bd4c6-7f44-4c46-a467-1e4696f52968",
"name": "secured"
}
],
"limit": 10,
"offset": 0,
"pagination": {},
"total": 1
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.