Seamlessly transition between AI and Human experiences, using platform native functions.
Create highly engaging customer engagements, using data enabled processes. Engage with customers faster for increased productivity and efficiency.Â
Over 400 brands use Cloudonix to build successful connections with over 3 million customers every month.
You don’t need to be a developer to build Cloudonix voice applications. Using Make.com you can build voice applications in minutes – no coding experience required.Â
Use funnel events to trigger voice calls, ensuring that you never miss a prospect or lead. Turn your funnels into highly effective conversion tools.
<?php
$url = "https://api.cloudonix.io/calls/example.com/application";
$data = array(
"destination" => "63121233333",
"caller-id" => "12127773456",
"cxml": "<Response><Play>https://example.com/sample.mp3</Play></Response>"
);
$ch = curl_init($url);
$headers = array(
"Authorization: bearer XI1234567890",
"Content-Type: application/json"
);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($httpcode == 200) {
echo $response;
} else {
echo "Error: " . $httpcode;
}
curl_close($ch);
?>
import requests
url = "https://api.cloudonix.io/calls/example.com/application"
headers = {
"Authorization": "bearer XI1234567890",
"Content-Type": "application/json"
}
data = {
"destination": "63121233333",
"caller-id": "12127773456",
"cxml": "<Response><Play>https://example.com/sample.mp3</Play></Response>"
}
response = requests.post(url, json=data, headers=headers)
if response.status_code == 200:
print(response.json())
else:
print("Error:", response.status_code)
const axios = require('axios');
const data = {
destination: "63121233333",
"caller-id": "12127773456",
cxml: "<Response><Play>https://example.com/sample.mp3</Play></Response>"
};
axios.post('https://api.cloudonix.io/calls/example.com/application', data, {
headers: {
Authorization: 'bearer XI1234567890',
'Content-Type': 'application/json'
}
})
.then((response) => {
console.log(response.data);
})
.catch((error) => {
console.log(error);
});
curl -X POST "https://api.cloudonix.io/calls/example.com/application" \
-H "Authorization: bearer XI1234567890" \
-H "Content-Type: application/json" \
-d '{"destination": "63121233333",
"caller-id": "12127773456",
"cxml": "<Response><Play>https://example.com/sample.mp3</Play></Response>"}'
console.log( 'Code is Poetry' );