Retrieve a user's Zoom Phone voicemails. **Scopes:** phone:read, phone:read:admin ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Medium**Prerequisite:**1. Business or Enterprise account2. A Zoom Phone license

getUsersVoicemails(
  userId,
  page_size = NULL,
  status = NULL,
  next_page_token = NULL,
  return_response = F
)

Arguments

userId

The user ID or email address of the user. For userlevel apps, pass me as the value for userId.

page_size

The number of records returned within a single API call.

status

Status of the voice mail

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.