Get all outbound voice profiles
GET/outbound_voice_profiles
Get all outbound voice profiles belonging to the user that match the given filters.
Request
Query Parameters
-
name
: sorts the result by thename
field in ascending order. -
-name
: sorts the result by thename
field in descending order.
page[number] integer
Possible values: >= 1
Default value: 1
The page number to load.
page[size] integer
Possible values: >= 1
and <= 250
Default value: 20
The size of the page.
filter[name][contains] string
Optional filter on outbound voice profile name.
sort string
Possible values: [enabled
, -enabled
, created_at
, -created_at
, name
, -name
, service_plan
, -service_plan
, traffic_type
, -traffic_type
, usage_payment_method
, -usage_payment_method
]
Default value: -created_at
Specifies the sort order for results. By default sorting direction is ascending. To have the results sorted in descending order add the -
prefix.
That is:
Responses
200: Successful response
- application/json
401: Unauthorized
422: Bad request
Request samples
curl -L 'https://api.telnyx.com/v2/outbound_voice_profiles' \
-H 'Accept: application/json'
Response samples
{
"data": [
{
"id": "1293384261075731499",
"record_type": "outbound_voice_profile",
"name": "office",
"connections_count": 12,
"traffic_type": "conversational",
"service_plan": "global",
"concurrent_call_limit": 10,
"enabled": true,
"tags": [
"office-profile"
],
"usage_payment_method": "rate-deck",
"whitelisted_destinations": [
"US",
"BR",
"AU"
],
"max_destination_rate": 10,
"daily_spend_limit": "100.00",
"daily_spend_limit_enabled": true,
"call_recording": {
"call_recording_type": "by_caller_phone_number",
"call_recording_caller_phone_numbers": [
"+19705555098"
],
"call_recording_channels": "dual",
"call_recording_format": "mp3"
},
"billing_group_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"created_at": "2018-02-02T22:25:27.521Z",
"updated_at": "2018-02-02T22:25:27.521Z"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}