Get Call Flows
This request returns a list of call flows that match the optional filters provided.
get | /callFlows |
Sample Request
This is 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.
curl -X GET \
'https://api.carrierx.com/conference/v1/callFlows?exclude_fields=attributeTemplates' \
-u '[your_use_name]:[your_password]'
Sample Response
200
status code with a list of Call Flow objects:
{
"callFlows": [
{
"id": 1,
"name": "SPECTEL",
"path": "/usr/local/DNCA/callflows/SPECTEL"
},
{
"id": 3,
"name": "CONF",
"path": "/usr/local/DNCA/callflows/CONF"
}
],
"last": 0,
"offset": 0,
"total": 2
}
This request is enabled for Pagination, Result Filtering, and Field Filtering.
note
Note that a request with no filtering will return attributeTemplates
for the call flow, and this field was excluded in the same curl command and response.