Hello All,
Kindly find the points below;a. In my project, I want to call a phone number (PSTN) from a web-application (in PHP) and when the owner of the number picks up, I will play an audio file for him -- No conversation needed.
b. I spoke to Sinch team, they said SINCH-REST-API can do it and gave me the code below;
https://www.sinch.com/docs/voice/rest#Callouts
[POST] https://callingapi.sinch.com/v1/callouts
{
"method" : "ttsCallout",
"ttsCallout" :
{
"cli" : "46000000000",
"destination" : { "type" : "number", "endpoint" : "46000000001" },
"domain" : "pstn",
"custom" : "customData",
"locale" : "en-US",
"text" : "#href[http://www.thehotline.co/content/prompts/v2/1greeting_b.wav]"
}
}
c.) I am very new to SINCH-REST-API and consuming REST-API using javascripts OR Jquery...
Please, if anybody can give me a sample code on how to use the idea from SINCH-team and achieve my goal, I will appreciate..
Regards
You have to create application key and secret then Use cURL to call api for more info about cURL:http://php.net/manual/en/book.curl.php and also detail info about sinch api visit:https://www.sinch.com/docs/