For AI agents: visit https://docs.ohyay.co/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
https://us-central1-ohyay-prod-d7acf.cloudfunctions.net/ohyayapi/list-recordings
interface RecordingsRequest {
userId: string;
wsid: string; // The workspace to get recordings for
}
export interface RecordingEntry {
timestamp: number;
downloadUrl: string;
roomId?: string; // Only set for single-room recordings
duration?: number;
recordingId?: string;
recordingTitle?: string;
}
export interface RecordingsResponse {
recordings: RecordingEntry[];
}
- The download URL in the response object is only valid for a small time window after the request is made.