Recording Metadata

URL

https://us-central1-ohyay-prod-d7acf.cloudfunctions.net/ohyayapi/recording-metadata

Request Format

interface RecordingMetadataRequest {
  userId: string;
  wsid: string;  // The workspace to get recording metadata for
  recordingId: string; // The ID of the recording
}

Response Format

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

Notes

  1. Speaker metadata is only available for recordings when Collect speaker metadata during recordings is enabled in the workspace settings.