com.route4me.sdk.examples.addressbook.CreateAddressBookContact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route4me-java-sdk Show documentation
Show all versions of route4me-java-sdk Show documentation
>This SDK makes it easier for you use the Route4Me API, which creates optimally sequenced driving routes for many drivers.
package com.route4me.sdk.examples.addressbook;
import com.route4me.sdk.exception.APIException;
import com.route4me.sdk.services.addressbook.AddressBookManager;
import com.route4me.sdk.services.addressbook.Contact;
public class CreateAddressBookContact {
public static void main(String[] args) {
String apiKey = System.getenv("R4M_API_KEY");
AddressBookManager addressBookManager = new AddressBookManager(apiKey);
Contact contact = new Contact();
contact.setFirstName("Juan");
contact.setLastName("Pimentel");
contact.setAddress1("17205 RICHMOND TNPK, MILFORD, VA, 22514");
contact.setCachedLat(38.024654);
contact.setCachedLng(-77.338814);
try {
Contact responseObject = addressBookManager.createContact(contact);
System.out.println(responseObject.toString());
} catch (APIException e) {
//handle exception
e.printStackTrace();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy