APIs (application programming interfaces)
VoiceIndia API allows clients and external agencies to integrate Voice Call, SMS system with its Own Application. This API enable client to compose messages. make Text to Speech and broadcast Voice, VoiceIndia users can intimate Sales personnel or Contact Sales@VoiceIndia.co.in for the requirement of APIs.
By starting the VoiceIndia software from the command line you can assign various parameters, with which you can call from your own Application.
The use of command line parameters is only recommended for experienced users.
Starting the VoiceIndia from the Command Line
1. Under Windows, select Run from the Windows Start menu.
2. Type CMD and Press Enter.
3. in the black Screen Use the Change Directory command to change to the CmdLine directory.
(Use our VoiceIndia Directory)
(Default path - C:\Program Files\VoiceIndia\)
4. Type the Command:
example,
VoiceBroadcastingAPI.exe /MobileNo: 9638777722 /SMS:Hello, this is test message
You will see Success screen.
/MobileNo - Mobile Number that you want to call
/SMS - (optional) if you want to send sms add SMS text with this Command.
/TTS - (optional) if you do not want to send Default Audio, and if you want to use text to speech service, use this command with
text and text will be converted into Voice.
Open Your.cs file and look for the code
// You need to use namesapce - using System.Diagnostics; p.StartInfo.FileName = @"C:\Program Files\VoiceIndia\VoiceBroadcastingAPI.exe"; Process p = new Process(); p.StartInfo.Arguments = "/MobileNo:9638777722 /SMS:Test msg from api"; p.Start();
From the above code just replace your File Path, Mobile Number and SMS value.
Open Your Code Editor and look for the code
// You need to use namesapce - Imports System.Diagnostics Dim p As New Process() p.StartInfo.FileName = @"C:\Program Files\VoiceIndia\VoiceBroadcastingAPI.exe" p.StartInfo.Arguments = "/MobileNo: 9638777722 /SMS:Test msg from api" p.Start()
From the above code just replace your File Path, Mobile Number and SMS value.
Open Your Code Editor and look for the code
// You need to use namesapce - using namespace System::Diagnostics; Process^ p = gcnew Process; p->StartInfo->FileName = "C:\\Program Files\\VoiceIndia\\VoiceBroadcastingAPI.exe"; p->StartInfo->Arguments = "/MobileNo: 9638777722 /SMS:Test msg from api"; p->Start();
From the above code just replace your File Path, Mobile Number and SMS value.
Open Your Code Editor and look for the code
Shell "C:\Program Files\VoiceIndia\VoiceBroadcastingAPI.exe /MobileNo: 9638777722 /SMS:Test msg from api"
From the above code just replace your File Path, Mobile Number and SMS value.
Open Your Code Editor and look for the code
.
From the above code just replace your File Path, Mobile Number and SMS value.
Open Your Code Editor and look for the code
Process p = new ProcessBuilder("C:\\Program Files\\VoiceIndia\\VoiceBroadcastingAPI.exe", "/MobileNo: 9638777722", "/SMS:Test msg from api").start();
From the above code just replace your File Path, Mobile Number and SMS value.
Open Your Code Editor and look for the code
let p = new System.Diagnostics.Process(); p.StartInfo.FileName <- @"C:\Program Files\VoiceIndia\VoiceBroadcastingAPI.exe"; p.StartInfo.Arguments <- ("/MobileNo: 9638777722 /SMS:Test msg from api") p.Start()
From the above code just replace your File Path, Mobile Number and SMS value.
Finally thank you very much for choosing VoiceIndia. Please keep that in mind that we are working very hard to providing better quality in coming days.
If you love your work then appreciate us by sharing this product in social media like twitter or facebook.
If you Face Any problem feel free to Contact Us.