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=client, body=body) -> Response[Error | RecordingResponse]
sync(client=client, body=body) -> Error | RecordingResponse | None
await asyncio_detailed(client=client, body=body) -> Response[Error | RecordingResponse]
await asyncio(client=client, body=body) -> Error | RecordingResponse | NoneGet Recording
Get recording status
Parameters
id (str)
Call styles
sync_detailed(id=id, client=client) -> Response[Error | RecordingResponse]
sync(id=id, client=client) -> Error | RecordingResponse | None
await asyncio_detailed(id=id, client=client) -> Response[Error | RecordingResponse]
await asyncio(id=id, client=client) -> Error | RecordingResponse | None