GET {{baseUrl}}/chat/users/me/contacts/:identifier?query_presence_status=<boolean>
A user under an organization's Zoom account has internal users listed under Company Contacts in the Zoom Client. A Zoom user can also add another Zoom user as a contact. Call this API to get information on a specific contact of the Zoom user. Note: This API only supports user-managed OAuth app.
Scope: chat_contact:read
Rate Limit Label: Medium
Body
PARAM
Key | Datatype | Required | Description |
query_presence_status
|
string | The presence status of the contact. Include this query parameter with a value of `true` to get the presence status of the contact in the response. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"direct_numbers": [
"<string>",
"<string>"
],
"email": "<email>",
"extension_number": "<string>",
"first_name": "<string>",
"id": "<string>",
"member_id": "<string>",
"last_name": "<string>",
"phone_number": "<string>",
"phone_numbers": [
{
"code": "<string>",
"country": "<string>",
"label": "Fax",
"number": "<string>",
"verified": "<boolean>"
},
{
"code": "<string>",
"country": "<string>",
"label": "Fax",
"number": "<string>",
"verified": "<boolean>"
}
],
"presence_status": "Offline"
} |
ENDPOINTS