List all Domain Applications
GET/domain_applications
Returns a list of your domain applications. The domain applications are returned sorted by creation date, with the most recent domain applications appearing first. The list is filterable by sending in any of the following parameters.
Permissions
The API token must include the following scopes: Voice.
Request
Query Parameters
filter_domain string
String representing the domain portion of the domain application. Will return all domain applications containing this value as a substring.
filter_name string
String representing the name portion of the domain application. Will return all domain applications containing this value as a substring.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
links
object
self string
first string
next string
prev string
data object[]
{
"links": {
"self": "string",
"first": "string",
"next": "string",
"prev": "string"
},
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"type": "domain_application",
"domain": "your-space-test_id",
"name": "Test App",
"identifier": "test-id",
"ip_auth_enabled": true,
"ip_auth": [
"8.8.8.8",
"4.4.4.4"
],
"call_handler": "relay_application",
"call_request_url": null,
"call_request_method": "POST",
"call_fallback_url": null,
"call_fallback_method": "POST",
"call_status_callback_url": null,
"call_status_callback_method": "POST",
"call_relay_topic": "office",
"call_relay_topic_status_callback_url": "https://myapplication/handle_relay_callbacks",
"call_relay_application": null,
"call_relay_script_url": null,
"call_laml_application_id": null,
"call_video_room_id": "fe4093d9-58c2-4931-b4b9-5679f82652c6",
"call_dialogflow_agent_id": "fe4093d9-58c2-4931-b4b9-5679f82652c6",
"call_ai_agent_id": "fe4093d9-58c2-4931-b4b9-5679f82652c6",
"call_flow_id": "fe4093d9-58c2-4931-b4b9-5679f82652c6",
"call_flow_version": "working_copy",
"encryption": "required",
"codecs": [
"PCMU",
"PCMA"
],
"ciphers": [
"AEAD_AES_256_GCM_8"
]
}
]
}
Loading...