A user under an organization's Zoom account has internal users listed under Company Contacts in the Zoom Client. Use this API to search users that are in the company contacts of a Zoom account. Using the search_key query parameter, provide either first name, last name or the email address of the user that you would like to search for. Optionally, set query_presence_status to true in order to include the presence status of a contact. **Scopes:** contact:read:admin, contact:read ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Medium

searchCompanyContacts(
  search_key,
  query_presence_status = NULL,
  page_size = NULL,
  next_page_token = NULL,
  return_response = F
)

Arguments

search_key

Provide the keyword either first name, last name or email of the contact whom you have to search for.

query_presence_status

Set query_presence_status to true in order to include the presence status of a contact in the response.

page_size

The number of records to be returned with a single API call.

next_page_token

The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.

return_response

Whether to return the response instead of the response content. Defaults to FALSE.