SDK ReferencePython SDK

Recordings

API functions for the Recordings resource.

Recordings

Functions for interacting with the recordings API resource. Each operation ships in four forms — sync / sync_detailed and their async counterparts.

Create Recording

Create a scrolling recording

Always async — returns 202. Poll via GET /v1/recordings/{id}.

Parameters

  • body (RecordingRequest)

Call styles

sync_detailed(client, body) -> Response[Error | RecordingResponse]
sync(client, body) -> Error | RecordingResponse | None
await asyncio_detailed(client, body) -> Response[Error | RecordingResponse]
await asyncio(client, body) -> Error | RecordingResponse | None

Get Recording

Get recording status

Parameters

  • id (str)

Call styles

sync_detailed(id, client) -> Response[Error | RecordingResponse]
sync(id, client) -> Error | RecordingResponse | None
await asyncio_detailed(id, client) -> Response[Error | RecordingResponse]
await asyncio(id, client) -> Error | RecordingResponse | None