Skip to main content

Get Dialouts

This request will return a list of Dialout objects scheduled for a future time. In other words, the returned dialouts will have a delay parameter value of more than 0.

get /dialouts

Sample

A sample GET request to retrieve dialouts matching the criteria in the request URL:

curl -X GET \
'https://api.carrierx.com/mediator/v1/dialouts' \
-u '[your_username]:[your_password]'

Response

200 status code with a list of Dialout objects:

{
"body": {
"count": 1,
"has_more": false,
"items": [
{
"account_sid": "13e156f7-0d21-4ba6-9e32-c56dc2c6098f",
"attributes": {
"hide_origination_did": "true"
},
"date_created": "2025-04-12T20:23:18.000Z",
"delay": 89959,
"dialout_sid": "58f76642-463c-47a6-b040-285bd3dc4e00",
"redirect_did": "15162065346",
"stage_one_destination_did": "15162065339",
"stage_two_destination_did": "15162065338"
}
],
"limit": 10,
"offset": 0,
"pagination": {},
"total": 1
},
"status": 200
}

This request is enabled for Pagination, Result Filtering, and Field Filtering.