Get Single Contact

  • URIs for Personal Contacts: /api/v1/accounts/self/contacts/{contact_id}
    (or)
    /api/v1/accounts/{emailId}/contacts/{contact_id}
  • URI for Org Contacts:  /api/v1/accounts/org/contacts/{contact_id}

    Note: Getting single contacts requires you to append the {contact_id}. You can get contact_id's from the Get Multiple Contacts API call response.

  • Parameters Allowed:
    • include=(specific details in comma separated values)
      Ex: include=emails,phones,ims

Sample Request

Copiedhttps://contacts.zoho.com/api/v1/accounts/self/contacts/4685191000000029004

Sample Response

Copied{
  "status_code": 200,
  "resource_name": "contacts",
  "contacts": {
    "created_time": 1532600991317,
    "updated_time": -1,
    "contact_type": "1",
    "zid": 11123456,
    "last_name": "fourth",
    "company": "prog",
    "is_writable": true,
    "contact_zuid": "-1",
    "photo_url": "https://contacts.zoho.com/images/user.gif",
    "contact_id": "4685191000000029004",
    "first_name": "athira",
    "status": -10
  }
}