Reputation: 107
I want to develop application in Java where it can add new contact in address book with all its related details. I need a backend RC API to do that task for me and will be called from my application.
What is the most relevant RC API to do that?
So far, I searched all the APIs present in the API references here:
https://developers.ringcentral.com/api-reference
Which endpoint can a contact in the existing address book of RC?
Upvotes: 4
Views: 79
Reputation: 8311
There is an endpoint "Creates personal user contact " for creating new contact:
https://developers.ringcentral.com/api-reference/External-Contacts/createContact
Sample:
POST /restapi/v1.0/account/~/extension/~/address-book/contact
{
"firstName":"David",
"lastName":"Williams",
"businessPhone":"+15551234567",
"businessAddress":{
"street":"20 Davis Dr.",
"city":"Belmont",
"state":"CA",
"zip":94002
}
}
Upvotes: 2