Get a Free WhatsApp Business Account – Includes Onboarding, API Access & Sandbox. Apply Now!


Sample Code For Sending Voice in JAVA

Sending Voice using Authkey APIs is a breeze and lightning fast. You can simply pass the message body, message sender, mobile number & authkey in the API request to send sms instantly.

JAVA Sample Code For Send Voice



OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
  .url("https://api.authkey.io/request?authkey=AUTHKEY&mobile=RecepientMobile&
  
  country_code=CountryCode&voice=Hello%2C%20your%20OTP%20is%201234")
  .get()
  .build();

Response response = client.newCall(request).execute();

Sending SMS using Authkey APIs is a breeze and lightning fast. You can simply pass the message body, message sender, mobile number & authkey in the API request to send sms instantly.