Fetching recordings using session_name

@alanc

There are two ways to solve this:

  1. You can use client.getSessionInfo().sessionId to get the sessionId and sync that with your database. You can see an example of this in our Telehealth sample app. We store all different sessionIds for a single “session name” in the database. We can then query those recordings using the API.

  2. This is not something I would recommend since we rate limit the API but you can also query all sessions and recursively get the recordings as a last resort. Link to code

1 Like