Ravi J
Ravi J

Reputation: 107

Add new contact with RingCentral API

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

Answers (1)

Anirban Sen Chowdhary
Anirban Sen Chowdhary

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
  }
}

ref: https://forums.developers.ringcentral.com/questions/1054/add-a-contact-name-number-to-contacts-via-api.html

Upvotes: 2

Related Questions