Makes a test outbound call using configured settings. Used for testing the telephony integration.
curl --request GET \
--url https://demo.enneo.ai/api/mind/telephony/testOutboundCall \
--header 'Authorization: Bearer <token>'{
"success": true,
"phoneNumber": "+491234567890",
"subchannelId": 5,
"ticketId": 12345,
"ticketIdUrl": "/ticket/12345",
"response": {}
}JWT-based authentication
Successful operation
true
Phone number called
"+491234567890"
ID of the subchannel used for the call
5
ID of the newly created ticket for the call
12345
URL to the newly created ticket
"/ticket/12345"
Response from the cortex service
curl --request GET \
--url https://demo.enneo.ai/api/mind/telephony/testOutboundCall \
--header 'Authorization: Bearer <token>'{
"success": true,
"phoneNumber": "+491234567890",
"subchannelId": 5,
"ticketId": 12345,
"ticketIdUrl": "/ticket/12345",
"response": {}
}