List Recordings

URL

https://us-central1-ohyay-prod-d7acf.cloudfunctions.net/ohyayapi/list-recordings

Request Format

interface RecordingsRequest {
  userId: string;
  wsid: string;  // The workspace to get recordings for
}

Response Format

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[];
}

Notes

  1. The download URL in the response object is only valid for a small time window after the request is made.