GET - Get a contact record


Purpose

Use this API to get a contact record.
 

Authorization

HeaderKey

Description

Authorization*

Zoho-oauthtoken<space><ACCESS_TOKEN>

Accept*

Set to application/json.

Request URL

Method: GET

https://voice.zoho.com/rest/json/zv/contacts/<contact_id>

Scope: zohovoice.contacts.READ

Sample Request

Copiedcurl "https://voice.zoho.com/rest/json/zv/contacts/<contact_id>" \
-X GET \
-H "Authorization:Zoho-oauthtoken *****"

Sample Response - Success

Copied{
  "code": "200",
  "contacts": {
    "country": "",
    "created_time": 1728037831825,
    "is_spam": "",
    "address": "",
    "mobile": "+12222222222",
    "mobile1": "",
    "phone2": "",
    "last_name": "",
    "phone3": "",
    "is_favourite": "",
    "contact_id": 315000153768793,
    "phone1": "",
    "number": [
      "+12000000000"
    ],
    "phone": "",
    "mobile3": "",
    "mobile2": "",
    "contact_owner": 415005010526109,
    "company": "",
    "state": "",
    "first_name": "test",
    "email": ""
  },
  "status": "SUCCESS"
}

Sample Response - Error

Copied{
  "code": "<App Error Code>",
  "message": "<Error Message>",
  "status": "ERROR"
}