![JAR search and dependency download from the Maven repository](/logo.png)
com.twilio.example.resource.CallCreatorExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Java helper library for Twilio services
The newest version!
package com.twilio.example.resource;
import com.twilio.sdk.Twilio;
import com.twilio.sdk.creator.api.v2010.account.CallCreator;
import com.twilio.sdk.exception.ApiException;
import com.twilio.sdk.resource.api.v2010.account.Call;
import com.twilio.sdk.type.PhoneNumber;
import java.net.URI;
import java.net.URISyntaxException;
/**
* Example for making a call.
*/
public class CallCreatorExample {
@SuppressWarnings("checkstyle:javadocmethod")
public static void main(final String[] args) {
Twilio.init("AC123", "AUTH TOKEN");
try {
CallCreator creator =
new CallCreator(
"AC123",
new PhoneNumber("+14156085895"),
new PhoneNumber("+14154888928"),
new URI("http://twimlbin.com/4397e62f")
);
Call call = creator.execute();
System.out.println(call.getSid());
System.out.println(call.getStatus().toString());
} catch (URISyntaxException | ApiException e) {
System.err.println("womp womp");
System.exit(1);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy