Session recording playlists
For instructions on how to authenticate to use this endpoint, see API overview.
Override list to include synthetic playlists
Endpoints
GET | |
POST | |
GET | |
PATCH | |
DELETE | |
GET | |
POST | |
DELETE |
List all session recording playlists
Required API key scopes
session_recording_playlist:readPath parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
Query parameters
- created_byinteger
- limitinteger
Number of results to return per page.
- offsetinteger
The initial index from which to return the results.
- short_idstring
Response
Example request
GET /api /projects /:project_id /session_recording_playlistsExample response
Status 200
Create session recording playlists
Required API key scopes
session_recording_playlist:writePath parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
Request parameters
- namestring
- derived_namestring
- descriptionstring
- pinnedboolean
- deletedboolean
- filters
- _create_in_folderstring
Response
Example request
POST /api /projects /:project_id /session_recording_playlistsExample response
Status 201
Retrieve session recording playlists
Required API key scopes
session_recording_playlist:readPath parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- short_idstring
Response
Example request
GET /api /projects /:project_id /session_recording_playlists /:short_idExample response
Status 200
Update session recording playlists
Required API key scopes
session_recording_playlist:writePath parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- short_idstring
Request parameters
- namestring
- derived_namestring
- descriptionstring
- pinnedboolean
- deletedboolean
- filters
- _create_in_folderstring
Response
Example request
PATCH /api /projects /:project_id /session_recording_playlists /:short_idExample response
Status 200
Delete session recording playlists
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
Required API key scopes
session_recording_playlist:writePath parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- short_idstring
Example request
DELETE /api /projects /:project_id /session_recording_playlists /:short_idExample response
Status 405 No response body
Retrieve session recording playlists recordings
Path parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- short_idstring
Example request
GET /api /projects /:project_id /session_recording_playlists /:short_id /recordingsExample response
Status 200 No response body
Create session recording playlists recordings
Path parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- session_recording_idstring
- short_idstring
Request parameters
- namestring
- derived_namestring
- descriptionstring
- pinnedboolean
- deletedboolean
- filters
- _create_in_folderstring
Example request
POST /api /projects /:project_id /session_recording_playlists /:short_id /recordings /:session_recording_idExample response
Status 200 No response body
Delete session recording playlists recordings
Path parameters
- project_idstring
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
- session_recording_idstring
- short_idstring
Example request
DELETE /api /projects /:project_id /session_recording_playlists /:short_id /recordings /:session_recording_id