Description
I would like to get the playback range I have set for some of my recordings via the API. I am using the “List Recordings” API with a JWT token and don’t see this information in the response. The recording_start and recording_end times are timestamps of the recording itself, not the playback range.
Error
There is no error. I am able to retrieve the list of recordings, all files, and even download the recordings. I only want to find the playback range and can’t find that in the API endpoint I am using.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
I am just testing this with curl in shell along with a JWT token generated in the admin panel.
Which Endpoint/s?
List recordings endpoint. (https://marketplace.zoom.us/docs/api-reference/zoom-api/cloud-recording/recordingslist)
How To Reproduce (If applicable)
Steps to reproduce the behavior:
- Get a JWT token
- Run the curl command:
curl --request GET \ --url 'https://api.zoom.us/v2/users/{id}/recordings?page_size=300&from=2019-01-01&to=2019-12-01' \ --header 'authorization: Bearer (token)' \ --header 'content-type: application/json' - See the response and it doesn’t have playback range information.

