Logo
Zoom Public API Documentation

Get user's contact details

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



Curl
curl -X GET 'https://api.zoom.us/v2/chat/users/me/contacts/:identifier?query_presence_status=<boolean>?query_presence_status=<boolean>' -H 'Accept: application/json'

ENDPOINTS