For AI agents: visit https://docs.ohyay.co/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
Text
https://us-central1-ohyay-prod-d7acf.cloudfunctions.net/ohyayapi/recording-metadata
TypeScript
interface RecordingMetadataRequest {
userId: string;
wsid: string; // The workspace to get recording metadata for
recordingId: string; // The ID of the recording
}
TypeScript
export interface SpeakerInfo {
speakerId: string;
talkStartTime: number;
duration: number;
}
export interface EmojiInfo {
userId: string;
emoji: string;
timestamp: number;
count: number;
}
export interface RecordingMetadataResponse {
speakers: SpeakerInfo[],
emojis: EmojiInfo[],
}
Speaker metadata is only available for recordings when Collect speaker metadata during recordings is enabled in the workspace settings.