Voice Context

  • Send voice messages through Twilio provider

  • You can bulk send voice messages to multiple recipients, platform will take care of the distribution asynchronous

  • Context Variable: voice

API Interface

//Gets the voice status as JSONObject or Map<String,Object>
Object status(String uuid, boolean asMap);

//Gets the voice status as Map<String,Object>
Object status(String uuid);

//Sends an SMS to a list of receipents
List<String> send(String content, List<String> receipents);

//Sends an SMS to one or more receipents
List<String> send(String content, String... receipents);

APIs Inherited

Context Base