Cloud Telephony Services by Cloud Vois - Empowering Your Communication Infrastructure
Reach out globally and improve user experience by conducting voice interactions in your consumers’ native language.
Cloud Vois Telephony Features
Advantages of Cloud Telephony
For Developers, By Developers
Cloudvois programmable API infrastructure enables developers to easily integrate communication API’s and create solutions of their choice. Create a free developer account today to access API and SDK’s.
$cloudvoisCommunications = new cloudvoisCommunicationsClient('YOUR_ACCESS_KEY');
$message = new cloudvoisCommunicationsObjectsMessage();
$message->originator = 'cloudvoisCommunications';
$message->recipients = [31612345678];
$message->body = 'This is a test message.';
$cloudvoisCommunications->messages->create($message); cloudvoisCommunicationsService service = new cloudvoisCommunicationsServiceImpl("YOUR_ACCESS_KEY");
cloudvoisCommunicationsClient cloudvoisCommunicationsClient = new cloudvoisCommunicationsClient(service);
List<BigInteger> recipients = new ArrayList<>();recipients.add(new BigInteger('31612345678'));
MessageResponse response = cloudvoisCommunicationsClient.sendMessage( "cloudvoisCommunications", "This is a test message.", recipients);
}import cloudvoisCommunicationsclient = cloudvoisCommunications.Client('YOUR_ACCESS_KEY')
message = client.message_create('cloudvoisCommunications', '31612345678', 'This is a test message.')