List all outbound profiles
GET/termination/endpoints
Returns a list of your outbound profiles.
Request
Query Parameters
whitelisted_destination_format string
Possible values: [alpha2
, alpha3
, iso_numeric
]
Default value: alpha3
Format of your whitelisted destinations.
page integer
Default value: 1
Page number of results to load
per_page integer
Possible values: <= 1000
Default value: 100
Number of results per page
filter[name] string
Optional filter on outbound profile name
sort string
Available sort parameters are active, created_at, name, service_plan, traffic_type, and usage_payment_method. You may sort on any combination of these. Prepend a field name with a -
to sort on that field in descending order.
Responses
200: Outbound Profile response
- application/json
401: Unauthorized
Request samples
curl -L 'https://api.telnyx.com/termination/endpoints' \
-H 'Accept: application/json'
Response samples
[
{
"id": "string",
"user_id": "string",
"connections": [
{}
],
"name": "string",
"traffic_type": 1,
"service_plan": 4,
"cps_limit": 100,
"ports": 0,
"translation_rule": "string",
"active": true,
"cps_limit_increase": 0,
"tag_list": [
"string"
],
"usage_payment_method": "rate-deck",
"custom_rate_deck": false,
"rate_deck_url": "string",
"whitelisted_destination_format": "alpha3",
"whitelisted_destinations": [
"US",
"BR",
"AU"
],
"max_destination_rate": 0,
"connection_id": "string",
"call_recording_type": "all",
"call_recording_phone_numbers": [
"string"
],
"call_recording_format": "wav",
"call_recording_channels": "single",
"daily_spend_limit": "string",
"daily_spend_limit_enabled": false,
"billing_group_id": "string"
}
]