GET
/
recording-sessions
/
all
curl --request GET \
  --url https://scribe-api.puppilot.co/recording-sessions/all \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "public_id": "<string>",
      "updated_at": "<string>",
      "patient_name": "<string>",
      "description": "<string>",
      "organization_public_id": "<string>"
    }
  ],
  "has_next": true,
  "current_page": 123,
  "items_per_page": 123
}

Overview

Retrieve a list of all create recording sessions.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1
limit
integer
default:50

Response

200 - application/json

List of recording sessions.

The response is of type object.