Logo
Zoom Public API Documentation

List user's voicemails in descending order

GET {{baseUrl}}/phone/users/:userId/voice_mails/sync?sync_type=FSync&sync_token=Z2JHTFNkMkRQa18xNjQxNTM3MDg2ODA5XzE2NDMyNjAxNzA5NDg=&count=15

Use this API to retrieve a user's Zoom Phone voicemails in descending order. For user-level apps, pass the me value instead of the userId parameter.

Scopes: phone:read, phone:read:admin, phone_voicemail:read, phone_voicemail:read:admin

Rate Limit Label: Medium

Prerequisites: * A Business or Enterprise account * A Zoom Phone license

 

Body PARAM

Key Datatype Required Description 
sync_type
string (Required) FSync: Full sync BSync: Backward sync ISync: Forward sync
sync_token
string Sync token. Use if requesting a backward (`BSync`) or forward (`ISync`) sync.
count
number Record count of each query.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "sync_token": "Z2JHTFNkMkRQa18xNjQxNTM3MDg2ODA5XzE2NDMyNjAxNzA5NDg=", "voice_mails": [ { "call_id": "876634343743", "call_log_id": "46541323465", "callee_name": "Jane Doe", "callee_number": "34567889", "callee_number_type": 2, "caller_name": "John Doe", "caller_number": "12345678", "caller_number_type": 2, "date_time": "2019-05-19T20:00:00Z", "download_url": "exampleurl.io", "duration": 18, "id": "d43520fc6b7e4b26bbeef58a8a80f235", "status": "read" }, { "call_id": "876634343743", "call_log_id": "46541323465", "callee_name": "Jane Doe", "callee_number": "34567889", "callee_number_type": 2, "caller_name": "John Doe", "caller_number": "12345678", "caller_number_type": 2, "date_time": "2019-05-19T20:00:00Z", "download_url": "exampleurl.io", "duration": 18, "id": "d43520fc6b7e4b26bbeef58a8a80f235", "status": "read" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/phone/users/:userId/voice_mails/sync?sync_type=FSync&sync_token=Z2JHTFNkMkRQa18xNjQxNTM3MDg2ODA5XzE2NDMyNjAxNzA5NDg=&count=15?sync_type=FSync&sync_token=Z2JHTFNkMkRQa18xNjQxNTM3MDg2ODA5XzE2NDMyNjAxNzA5NDg=&count=15' -H 'Accept: application/json'

ENDPOINTS