Files
reflector/docs/static/openapi.json
Sergey Mankovsky 0931095f49 fix: remaining dependabot security issues (#890)
* Upgrade docs deps

* Upgrade frontend to latest deps

* Update package overrides

* Remove redundant deps

* Add tailwind postcss plugin

* Replace language select with chakra

* Fix main nav

* Patch gray matter

* Fix webpack override

* Replace python-jose with pyjwt

* Override kv url for frontend in compose

* Upgrade hatchet sdk

* Update docs

* Supress pydantic warnings
2026-03-02 17:17:40 +01:00

6976 lines
170 KiB
JSON

{
"openapi": "3.1.0",
"info": {
"title": "FastAPI",
"version": "0.1.0"
},
"paths": {
"/health": {
"get": {
"summary": "Health",
"operationId": "health",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
}
}
}
},
"/metrics": {
"get": {
"summary": "Metrics",
"description": "Endpoint that serves Prometheus metrics.",
"operationId": "metrics",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
}
}
}
},
"/v1/meetings/{meeting_id}/consent": {
"post": {
"summary": "Meeting Audio Consent",
"operationId": "v1_meeting_audio_consent",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "meeting_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Meeting Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MeetingConsentRequest"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/meetings/{meeting_id}/deactivate": {
"patch": {
"summary": "Meeting Deactivate",
"operationId": "v1_meeting_deactivate",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "meeting_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Meeting Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/meetings/{meeting_id}/recordings/start": {
"post": {
"summary": "Start Recording",
"description": "Start cloud or raw-tracks recording via Daily.co REST API.\n\nBoth cloud and raw-tracks are started via REST API to bypass enable_recording limitation of allowing only 1 recording at a time.\nUses different instanceIds for cloud vs raw-tracks (same won't work)\n\nNote: No authentication required - anonymous users supported. TODO this is a DOS vector",
"operationId": "v1_start_recording",
"parameters": [
{
"name": "meeting_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"minLength": 1,
"description": "A non-empty string",
"title": "Meeting Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StartRecordingRequest"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "object",
"additionalProperties": true,
"title": "Response Start Recording V1 Meetings Meeting Id Recordings Start Post"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms": {
"get": {
"summary": "Rooms List",
"operationId": "v1_rooms_list",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 1,
"description": "Page number",
"default": 1,
"title": "Page"
},
"description": "Page number"
},
{
"name": "size",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"maximum": 100,
"minimum": 1,
"description": "Page size",
"default": 50,
"title": "Size"
},
"description": "Page size"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_RoomDetails_"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"post": {
"summary": "Rooms Create",
"operationId": "v1_rooms_create",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateRoom"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Room"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_id}": {
"get": {
"summary": "Rooms Get",
"operationId": "v1_rooms_get",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoomDetails"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"patch": {
"summary": "Rooms Update",
"operationId": "v1_rooms_update",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateRoom"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoomDetails"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"delete": {
"summary": "Rooms Delete",
"operationId": "v1_rooms_delete",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeletionStatus"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/name/{room_name}": {
"get": {
"summary": "Rooms Get By Name",
"operationId": "v1_rooms_get_by_name",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RoomDetails"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/meeting": {
"post": {
"summary": "Rooms Create Meeting",
"operationId": "v1_rooms_create_meeting",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateRoomMeeting"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Meeting"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_id}/webhook/test": {
"post": {
"summary": "Rooms Test Webhook",
"description": "Test webhook configuration by sending a sample payload.",
"operationId": "v1_rooms_test_webhook",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/WebhookTestResult"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/ics/sync": {
"post": {
"summary": "Rooms Sync Ics",
"operationId": "v1_rooms_sync_ics",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ICSSyncResult"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/ics/status": {
"get": {
"summary": "Rooms Ics Status",
"operationId": "v1_rooms_ics_status",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ICSStatus"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/meetings": {
"get": {
"summary": "Rooms List Meetings",
"operationId": "v1_rooms_list_meetings",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CalendarEventResponse"
},
"title": "Response Rooms List Meetings V1 Rooms Room Name Meetings Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/meetings/upcoming": {
"get": {
"summary": "Rooms List Upcoming Meetings",
"operationId": "v1_rooms_list_upcoming_meetings",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
},
{
"name": "minutes_ahead",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"default": 120,
"title": "Minutes Ahead"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CalendarEventResponse"
},
"title": "Response Rooms List Upcoming Meetings V1 Rooms Room Name Meetings Upcoming Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/meetings/active": {
"get": {
"summary": "Rooms List Active Meetings",
"operationId": "v1_rooms_list_active_meetings",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Meeting"
},
"title": "Response Rooms List Active Meetings V1 Rooms Room Name Meetings Active Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/meetings/{meeting_id}": {
"get": {
"summary": "Rooms Get Meeting",
"description": "Get a single meeting by ID within a specific room.",
"operationId": "v1_rooms_get_meeting",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
},
{
"name": "meeting_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Meeting Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Meeting"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/rooms/{room_name}/meetings/{meeting_id}/join": {
"post": {
"summary": "Rooms Join Meeting",
"operationId": "v1_rooms_join_meeting",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "room_name",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Room Name"
}
},
{
"name": "meeting_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Meeting Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Meeting"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts": {
"get": {
"summary": "Transcripts List",
"operationId": "v1_transcripts_list",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "source_kind",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"$ref": "#/components/schemas/SourceKind"
},
{
"type": "null"
}
],
"title": "Source Kind"
}
},
{
"name": "room_id",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
}
},
{
"name": "search_term",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Search Term"
}
},
{
"name": "change_seq_from",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq From"
}
},
{
"name": "sort_by",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"enum": [
"created_at",
"change_seq"
],
"type": "string"
},
{
"type": "null"
}
],
"title": "Sort By"
}
},
{
"name": "page",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 1,
"description": "Page number",
"default": 1,
"title": "Page"
},
"description": "Page number"
},
{
"name": "size",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"maximum": 100,
"minimum": 1,
"description": "Page size",
"default": 50,
"title": "Size"
},
"description": "Page size"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Page_GetTranscriptMinimal_"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"post": {
"summary": "Transcripts Create",
"operationId": "v1_transcripts_create",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateTranscript"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetTranscriptWithParticipants"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/search": {
"get": {
"summary": "Transcripts Search",
"description": "Full-text search across transcript titles and content.",
"operationId": "v1_transcripts_search",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "q",
"in": "query",
"required": true,
"schema": {
"type": "string",
"minLength": 0,
"description": "Search query text",
"title": "Q"
},
"description": "Search query text"
},
{
"name": "limit",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"maximum": 100,
"minimum": 1,
"description": "Results per page",
"default": 20,
"title": "Limit"
},
"description": "Results per page"
},
{
"name": "offset",
"in": "query",
"required": false,
"schema": {
"type": "integer",
"minimum": 0,
"description": "Number of results to skip",
"default": 0,
"title": "Offset"
},
"description": "Number of results to skip"
},
{
"name": "room_id",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
}
},
{
"name": "source_kind",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"$ref": "#/components/schemas/SourceKind"
},
{
"type": "null"
}
],
"title": "Source Kind"
}
},
{
"name": "from",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"description": "Filter transcripts created on or after this datetime (ISO 8601 with timezone)",
"title": "From"
},
"description": "Filter transcripts created on or after this datetime (ISO 8601 with timezone)"
},
{
"name": "to",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"description": "Filter transcripts created on or before this datetime (ISO 8601 with timezone)",
"title": "To"
},
"description": "Filter transcripts created on or before this datetime (ISO 8601 with timezone)"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchResponse"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}": {
"get": {
"summary": "Transcript Get",
"operationId": "v1_transcript_get",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "transcript_format",
"in": "query",
"required": false,
"schema": {
"enum": [
"text",
"text-timestamped",
"webvtt-named",
"json"
],
"type": "string",
"default": "text",
"title": "Transcript Format"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/GetTranscriptWithText"
},
{
"$ref": "#/components/schemas/GetTranscriptWithTextTimestamped"
},
{
"$ref": "#/components/schemas/GetTranscriptWithWebVTTNamed"
},
{
"$ref": "#/components/schemas/GetTranscriptWithJSON"
}
],
"discriminator": {
"propertyName": "transcript_format",
"mapping": {
"text": "#/components/schemas/GetTranscriptWithText",
"text-timestamped": "#/components/schemas/GetTranscriptWithTextTimestamped",
"webvtt-named": "#/components/schemas/GetTranscriptWithWebVTTNamed",
"json": "#/components/schemas/GetTranscriptWithJSON"
}
},
"title": "Response Transcript Get V1 Transcripts Transcript Id Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"patch": {
"summary": "Transcript Update",
"operationId": "v1_transcript_update",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateTranscript"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetTranscriptWithParticipants"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"delete": {
"summary": "Transcript Delete",
"operationId": "v1_transcript_delete",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeletionStatus"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/topics": {
"get": {
"summary": "Transcript Get Topics",
"operationId": "v1_transcript_get_topics",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GetTranscriptTopic"
},
"title": "Response Transcript Get Topics V1 Transcripts Transcript Id Topics Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/topics/with-words": {
"get": {
"summary": "Transcript Get Topics With Words",
"operationId": "v1_transcript_get_topics_with_words",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GetTranscriptTopicWithWords"
},
"title": "Response Transcript Get Topics With Words V1 Transcripts Transcript Id Topics With Words Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/topics/{topic_id}/words-per-speaker": {
"get": {
"summary": "Transcript Get Topics With Words Per Speaker",
"operationId": "v1_transcript_get_topics_with_words_per_speaker",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "topic_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Topic Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetTranscriptTopicWithWordsPerSpeaker"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/zulip": {
"post": {
"summary": "Transcript Post To Zulip",
"operationId": "v1_transcript_post_to_zulip",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "stream",
"in": "query",
"required": true,
"schema": {
"type": "string",
"title": "Stream"
}
},
{
"name": "topic",
"in": "query",
"required": true,
"schema": {
"type": "string",
"title": "Topic"
}
},
{
"name": "include_topics",
"in": "query",
"required": true,
"schema": {
"type": "boolean",
"title": "Include Topics"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/audio/mp3": {
"head": {
"summary": "Transcript Get Audio Mp3",
"operationId": "v1_transcript_head_audio_mp3",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "token",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Token"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"get": {
"summary": "Transcript Get Audio Mp3",
"operationId": "v1_transcript_get_audio_mp3",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "token",
"in": "query",
"required": false,
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Token"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/audio/waveform": {
"get": {
"summary": "Transcript Get Audio Waveform",
"operationId": "v1_transcript_get_audio_waveform",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AudioWaveform"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/participants": {
"get": {
"summary": "Transcript Get Participants",
"operationId": "v1_transcript_get_participants",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Participant"
},
"title": "Response Transcript Get Participants V1 Transcripts Transcript Id Participants Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"post": {
"summary": "Transcript Add Participant",
"operationId": "v1_transcript_add_participant",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateParticipant"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Participant"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/participants/{participant_id}": {
"get": {
"summary": "Transcript Get Participant",
"operationId": "v1_transcript_get_participant",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "participant_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Participant Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Participant"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"patch": {
"summary": "Transcript Update Participant",
"operationId": "v1_transcript_update_participant",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "participant_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Participant Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateParticipant"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Participant"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"delete": {
"summary": "Transcript Delete Participant",
"operationId": "v1_transcript_delete_participant",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "participant_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Participant Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeletionStatus"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/speaker/assign": {
"patch": {
"summary": "Transcript Assign Speaker",
"operationId": "v1_transcript_assign_speaker",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SpeakerAssignment"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SpeakerAssignmentStatus"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/speaker/merge": {
"patch": {
"summary": "Transcript Merge Speaker",
"operationId": "v1_transcript_merge_speaker",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SpeakerMerge"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SpeakerAssignmentStatus"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/record/upload": {
"post": {
"summary": "Transcript Record Upload",
"operationId": "v1_transcript_record_upload",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
},
{
"name": "chunk_number",
"in": "query",
"required": true,
"schema": {
"type": "integer",
"title": "Chunk Number"
}
},
{
"name": "total_chunks",
"in": "query",
"required": true,
"schema": {
"type": "integer",
"title": "Total Chunks"
}
}
],
"requestBody": {
"required": true,
"content": {
"multipart/form-data": {
"schema": {
"$ref": "#/components/schemas/Body_transcript_record_upload_v1_transcripts__transcript_id__record_upload_post"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/events": {
"get": {
"summary": "Transcript WebSocket event schema",
"description": "Stub exposing the discriminated union of all transcript-level WS events for OpenAPI type generation. Real events are delivered over the WebSocket at the same path.",
"operationId": "v1_transcript_get_websocket_events",
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/TranscriptWsTranscript"
},
{
"$ref": "#/components/schemas/TranscriptWsTopic"
},
{
"$ref": "#/components/schemas/TranscriptWsStatus"
},
{
"$ref": "#/components/schemas/TranscriptWsFinalTitle"
},
{
"$ref": "#/components/schemas/TranscriptWsFinalLongSummary"
},
{
"$ref": "#/components/schemas/TranscriptWsFinalShortSummary"
},
{
"$ref": "#/components/schemas/TranscriptWsActionItems"
},
{
"$ref": "#/components/schemas/TranscriptWsDuration"
},
{
"$ref": "#/components/schemas/TranscriptWsWaveform"
}
],
"discriminator": {
"propertyName": "event",
"mapping": {
"TRANSCRIPT": "#/components/schemas/TranscriptWsTranscript",
"TOPIC": "#/components/schemas/TranscriptWsTopic",
"STATUS": "#/components/schemas/TranscriptWsStatus",
"FINAL_TITLE": "#/components/schemas/TranscriptWsFinalTitle",
"FINAL_LONG_SUMMARY": "#/components/schemas/TranscriptWsFinalLongSummary",
"FINAL_SHORT_SUMMARY": "#/components/schemas/TranscriptWsFinalShortSummary",
"ACTION_ITEMS": "#/components/schemas/TranscriptWsActionItems",
"DURATION": "#/components/schemas/TranscriptWsDuration",
"WAVEFORM": "#/components/schemas/TranscriptWsWaveform"
}
},
"title": "Response Transcript Get Websocket Events V1 Transcripts Transcript Id Events Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/record/webrtc": {
"post": {
"summary": "Transcript Record Webrtc",
"operationId": "v1_transcript_record_webrtc",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RtcOffer"
}
}
}
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/transcripts/{transcript_id}/process": {
"post": {
"summary": "Transcript Process",
"operationId": "v1_transcript_process",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "transcript_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Transcript Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProcessStatus"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/me": {
"get": {
"summary": "User Me",
"operationId": "v1_user_me",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"anyOf": [
{
"$ref": "#/components/schemas/UserInfo"
},
{
"type": "null"
}
],
"title": "Response User Me V1 Me Get"
}
}
}
}
},
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
]
}
},
"/v1/user/api-keys": {
"get": {
"summary": "List Api Keys",
"operationId": "v1_list_api_keys",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/ApiKeyResponse"
},
"type": "array",
"title": "Response List Api Keys V1 User Api Keys Get"
}
}
}
}
},
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
]
},
"post": {
"summary": "Create Api Key",
"operationId": "v1_create_api_key",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateApiKeyRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateApiKeyResponse"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
},
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
]
}
},
"/v1/user/api-keys/{key_id}": {
"delete": {
"summary": "Delete Api Key",
"operationId": "v1_delete_api_key",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "key_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"minLength": 1,
"description": "A non-empty string",
"title": "Key Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/events": {
"get": {
"summary": "User WebSocket event schema",
"description": "Stub exposing the discriminated union of all user-level WS events for OpenAPI type generation. Real events are delivered over the WebSocket at the same path.",
"operationId": "v1_user_get_websocket_events",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/UserWsTranscriptCreated"
},
{
"$ref": "#/components/schemas/UserWsTranscriptDeleted"
},
{
"$ref": "#/components/schemas/UserWsTranscriptStatus"
},
{
"$ref": "#/components/schemas/UserWsTranscriptFinalTitle"
},
{
"$ref": "#/components/schemas/UserWsTranscriptDuration"
}
],
"title": "Response User Get Websocket Events V1 Events Get",
"discriminator": {
"propertyName": "event",
"mapping": {
"TRANSCRIPT_CREATED": "#/components/schemas/UserWsTranscriptCreated",
"TRANSCRIPT_DELETED": "#/components/schemas/UserWsTranscriptDeleted",
"TRANSCRIPT_STATUS": "#/components/schemas/UserWsTranscriptStatus",
"TRANSCRIPT_FINAL_TITLE": "#/components/schemas/UserWsTranscriptFinalTitle",
"TRANSCRIPT_DURATION": "#/components/schemas/UserWsTranscriptDuration"
}
}
}
}
}
}
}
}
},
"/v1/zulip/streams": {
"get": {
"summary": "Zulip Get Streams",
"description": "Get all Zulip streams.",
"operationId": "v1_zulip_get_streams",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Stream"
},
"type": "array",
"title": "Response Zulip Get Streams V1 Zulip Streams Get"
}
}
}
}
},
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
]
}
},
"/v1/zulip/streams/{stream_id}/topics": {
"get": {
"summary": "Zulip Get Topics",
"description": "Get all topics for a specific Zulip stream.",
"operationId": "v1_zulip_get_topics",
"security": [
{
"OAuth2PasswordBearer": []
},
{
"APIKeyHeader": []
}
],
"parameters": [
{
"name": "stream_id",
"in": "path",
"required": true,
"schema": {
"type": "integer",
"title": "Stream Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Topic"
},
"title": "Response Zulip Get Topics V1 Zulip Streams Stream Id Topics Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/whereby": {
"post": {
"summary": "Whereby Webhook",
"operationId": "v1_whereby_webhook",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/WherebyWebhookEvent"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/v1/daily/webhook": {
"post": {
"summary": "Webhook",
"description": "Handle Daily webhook events.\n\nExample webhook payload:\n{\n \"version\": \"1.0.0\",\n \"type\": \"recording.ready-to-download\",\n \"id\": \"rec-rtd-c3df927c-f738-4471-a2b7-066fa7e95a6b-1692124192\",\n \"payload\": {\n \"recording_id\": \"08fa0b24-9220-44c5-846c-3f116cf8e738\",\n \"room_name\": \"Xcm97xRZ08b2dePKb78g\",\n \"start_ts\": 1692124183,\n \"status\": \"finished\",\n \"max_participants\": 1,\n \"duration\": 9,\n \"share_token\": \"ntDCL5k98Ulq\", #gitleaks:allow\n \"s3_key\": \"api-test-1j8fizhzd30c/Xcm97xRZ08b2dePKb78g/1692124183028\"\n },\n \"event_ts\": 1692124192\n}\n\nDaily.co circuit-breaker: After 3+ failed responses (4xx/5xx), webhook\nstate→FAILED, stops sending events. Reset: scripts/recreate_daily_webhook.py",
"operationId": "v1_webhook",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
}
}
}
}
},
"components": {
"schemas": {
"ApiKeyResponse": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id",
"description": "A non-empty string"
},
"user_id": {
"type": "string",
"minLength": 1,
"title": "User Id",
"description": "A non-empty string"
},
"name": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "A non-empty string"
},
{
"type": "null"
}
],
"title": "Name"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"created_at"
],
"title": "ApiKeyResponse"
},
"AudioWaveform": {
"properties": {
"data": {
"items": {
"type": "number"
},
"type": "array",
"title": "Data"
}
},
"type": "object",
"required": [
"data"
],
"title": "AudioWaveform"
},
"Body_transcript_record_upload_v1_transcripts__transcript_id__record_upload_post": {
"properties": {
"chunk": {
"type": "string",
"contentMediaType": "application/octet-stream",
"title": "Chunk"
}
},
"type": "object",
"required": [
"chunk"
],
"title": "Body_transcript_record_upload_v1_transcripts__transcript_id__record_upload_post"
},
"CalendarEventResponse": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"room_id": {
"type": "string",
"title": "Room Id"
},
"ics_uid": {
"type": "string",
"title": "Ics Uid"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Description"
},
"start_time": {
"type": "string",
"format": "date-time",
"title": "Start Time"
},
"end_time": {
"type": "string",
"format": "date-time",
"title": "End Time"
},
"attendees": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Attendees"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Location"
},
"last_synced": {
"type": "string",
"format": "date-time",
"title": "Last Synced"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At"
},
"updated_at": {
"type": "string",
"format": "date-time",
"title": "Updated At"
}
},
"type": "object",
"required": [
"id",
"room_id",
"ics_uid",
"start_time",
"end_time",
"last_synced",
"created_at",
"updated_at"
],
"title": "CalendarEventResponse"
},
"CreateApiKeyRequest": {
"properties": {
"name": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "A non-empty string"
},
{
"type": "null"
}
],
"title": "Name"
}
},
"type": "object",
"title": "CreateApiKeyRequest"
},
"CreateApiKeyResponse": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id",
"description": "A non-empty string"
},
"user_id": {
"type": "string",
"minLength": 1,
"title": "User Id",
"description": "A non-empty string"
},
"name": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "A non-empty string"
},
{
"type": "null"
}
],
"title": "Name"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At"
},
"key": {
"type": "string",
"minLength": 1,
"title": "Key",
"description": "A non-empty string"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"created_at",
"key"
],
"title": "CreateApiKeyResponse"
},
"CreateParticipant": {
"properties": {
"speaker": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Speaker"
},
"name": {
"type": "string",
"title": "Name"
}
},
"type": "object",
"required": [
"name"
],
"title": "CreateParticipant"
},
"CreateRoom": {
"properties": {
"name": {
"type": "string",
"title": "Name"
},
"zulip_auto_post": {
"type": "boolean",
"title": "Zulip Auto Post"
},
"zulip_stream": {
"type": "string",
"title": "Zulip Stream"
},
"zulip_topic": {
"type": "string",
"title": "Zulip Topic"
},
"is_locked": {
"type": "boolean",
"title": "Is Locked"
},
"room_mode": {
"type": "string",
"title": "Room Mode"
},
"recording_type": {
"type": "string",
"title": "Recording Type"
},
"recording_trigger": {
"type": "string",
"title": "Recording Trigger"
},
"is_shared": {
"type": "boolean",
"title": "Is Shared"
},
"webhook_url": {
"type": "string",
"title": "Webhook Url"
},
"webhook_secret": {
"type": "string",
"title": "Webhook Secret"
},
"ics_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ics Url"
},
"ics_fetch_interval": {
"type": "integer",
"title": "Ics Fetch Interval",
"default": 300
},
"ics_enabled": {
"type": "boolean",
"title": "Ics Enabled",
"default": false
},
"platform": {
"type": "string",
"enum": [
"whereby",
"daily"
],
"title": "Platform"
},
"skip_consent": {
"type": "boolean",
"title": "Skip Consent",
"default": false
}
},
"type": "object",
"required": [
"name",
"zulip_auto_post",
"zulip_stream",
"zulip_topic",
"is_locked",
"room_mode",
"recording_type",
"recording_trigger",
"is_shared",
"webhook_url",
"webhook_secret",
"platform"
],
"title": "CreateRoom"
},
"CreateRoomMeeting": {
"properties": {
"allow_duplicated": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Allow Duplicated",
"default": false
}
},
"type": "object",
"title": "CreateRoomMeeting"
},
"CreateTranscript": {
"properties": {
"name": {
"type": "string",
"title": "Name"
},
"source_language": {
"type": "string",
"title": "Source Language",
"default": "en"
},
"target_language": {
"type": "string",
"title": "Target Language",
"default": "en"
},
"source_kind": {
"anyOf": [
{
"$ref": "#/components/schemas/SourceKind"
},
{
"type": "null"
}
]
}
},
"type": "object",
"required": [
"name"
],
"title": "CreateTranscript"
},
"DeletionStatus": {
"properties": {
"status": {
"type": "string",
"title": "Status"
}
},
"type": "object",
"required": [
"status"
],
"title": "DeletionStatus"
},
"GetTranscriptMinimal": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"name": {
"type": "string",
"title": "Name"
},
"status": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Status"
},
"locked": {
"type": "boolean",
"title": "Locked"
},
"duration": {
"type": "number",
"title": "Duration"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"short_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Short Summary"
},
"long_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Long Summary"
},
"created_at": {
"type": "string",
"title": "Created At"
},
"share_mode": {
"type": "string",
"title": "Share Mode",
"default": "private"
},
"source_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Source Language"
},
"target_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Target Language"
},
"reviewed": {
"type": "boolean",
"title": "Reviewed"
},
"meeting_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Meeting Id"
},
"source_kind": {
"$ref": "#/components/schemas/SourceKind"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"room_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Name"
},
"audio_deleted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Audio Deleted"
},
"change_seq": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"status",
"locked",
"duration",
"title",
"short_summary",
"long_summary",
"created_at",
"source_language",
"target_language",
"reviewed",
"meeting_id",
"source_kind"
],
"title": "GetTranscriptMinimal"
},
"GetTranscriptSegmentTopic": {
"properties": {
"text": {
"type": "string",
"title": "Text"
},
"start": {
"type": "number",
"title": "Start"
},
"speaker": {
"type": "integer",
"title": "Speaker"
}
},
"type": "object",
"required": [
"text",
"start",
"speaker"
],
"title": "GetTranscriptSegmentTopic"
},
"GetTranscriptTopic": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"title": {
"type": "string",
"title": "Title"
},
"summary": {
"type": "string",
"title": "Summary"
},
"timestamp": {
"type": "number",
"title": "Timestamp"
},
"duration": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"title": "Duration"
},
"transcript": {
"type": "string",
"title": "Transcript"
},
"segments": {
"items": {
"$ref": "#/components/schemas/GetTranscriptSegmentTopic"
},
"type": "array",
"title": "Segments",
"default": []
}
},
"type": "object",
"required": [
"id",
"title",
"summary",
"timestamp",
"duration",
"transcript"
],
"title": "GetTranscriptTopic"
},
"GetTranscriptTopicWithWords": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"title": {
"type": "string",
"title": "Title"
},
"summary": {
"type": "string",
"title": "Summary"
},
"timestamp": {
"type": "number",
"title": "Timestamp"
},
"duration": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"title": "Duration"
},
"transcript": {
"type": "string",
"title": "Transcript"
},
"segments": {
"items": {
"$ref": "#/components/schemas/GetTranscriptSegmentTopic"
},
"type": "array",
"title": "Segments",
"default": []
},
"words": {
"items": {
"$ref": "#/components/schemas/Word"
},
"type": "array",
"title": "Words",
"default": []
}
},
"type": "object",
"required": [
"id",
"title",
"summary",
"timestamp",
"duration",
"transcript"
],
"title": "GetTranscriptTopicWithWords"
},
"GetTranscriptTopicWithWordsPerSpeaker": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"title": {
"type": "string",
"title": "Title"
},
"summary": {
"type": "string",
"title": "Summary"
},
"timestamp": {
"type": "number",
"title": "Timestamp"
},
"duration": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"title": "Duration"
},
"transcript": {
"type": "string",
"title": "Transcript"
},
"segments": {
"items": {
"$ref": "#/components/schemas/GetTranscriptSegmentTopic"
},
"type": "array",
"title": "Segments",
"default": []
},
"words_per_speaker": {
"items": {
"$ref": "#/components/schemas/SpeakerWords"
},
"type": "array",
"title": "Words Per Speaker",
"default": []
}
},
"type": "object",
"required": [
"id",
"title",
"summary",
"timestamp",
"duration",
"transcript"
],
"title": "GetTranscriptTopicWithWordsPerSpeaker"
},
"GetTranscriptWithJSON": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"name": {
"type": "string",
"title": "Name"
},
"status": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Status"
},
"locked": {
"type": "boolean",
"title": "Locked"
},
"duration": {
"type": "number",
"title": "Duration"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"short_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Short Summary"
},
"long_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Long Summary"
},
"created_at": {
"type": "string",
"title": "Created At"
},
"share_mode": {
"type": "string",
"title": "Share Mode",
"default": "private"
},
"source_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Source Language"
},
"target_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Target Language"
},
"reviewed": {
"type": "boolean",
"title": "Reviewed"
},
"meeting_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Meeting Id"
},
"source_kind": {
"$ref": "#/components/schemas/SourceKind"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"room_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Name"
},
"audio_deleted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Audio Deleted"
},
"change_seq": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq"
},
"participants": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/TranscriptParticipantWithEmail"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Participants"
},
"transcript_format": {
"type": "string",
"const": "json",
"title": "Transcript Format",
"default": "json"
},
"transcript": {
"items": {
"$ref": "#/components/schemas/TranscriptSegment"
},
"type": "array",
"title": "Transcript"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"status",
"locked",
"duration",
"title",
"short_summary",
"long_summary",
"created_at",
"source_language",
"target_language",
"reviewed",
"meeting_id",
"source_kind",
"participants",
"transcript"
],
"title": "GetTranscriptWithJSON",
"description": "Transcript response as structured JSON segments.\n\nFormat: Array of segment objects with speaker info, text, and timing.\nExample:\n [\n {\n \"speaker\": 0,\n \"speaker_name\": \"John Smith\",\n \"text\": \"Hello everyone\",\n \"start\": 0.0,\n \"end\": 5.0\n }\n ]"
},
"GetTranscriptWithParticipants": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"name": {
"type": "string",
"title": "Name"
},
"status": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Status"
},
"locked": {
"type": "boolean",
"title": "Locked"
},
"duration": {
"type": "number",
"title": "Duration"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"short_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Short Summary"
},
"long_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Long Summary"
},
"created_at": {
"type": "string",
"title": "Created At"
},
"share_mode": {
"type": "string",
"title": "Share Mode",
"default": "private"
},
"source_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Source Language"
},
"target_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Target Language"
},
"reviewed": {
"type": "boolean",
"title": "Reviewed"
},
"meeting_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Meeting Id"
},
"source_kind": {
"$ref": "#/components/schemas/SourceKind"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"room_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Name"
},
"audio_deleted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Audio Deleted"
},
"change_seq": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq"
},
"participants": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/TranscriptParticipantWithEmail"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Participants"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"status",
"locked",
"duration",
"title",
"short_summary",
"long_summary",
"created_at",
"source_language",
"target_language",
"reviewed",
"meeting_id",
"source_kind",
"participants"
],
"title": "GetTranscriptWithParticipants"
},
"GetTranscriptWithText": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"name": {
"type": "string",
"title": "Name"
},
"status": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Status"
},
"locked": {
"type": "boolean",
"title": "Locked"
},
"duration": {
"type": "number",
"title": "Duration"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"short_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Short Summary"
},
"long_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Long Summary"
},
"created_at": {
"type": "string",
"title": "Created At"
},
"share_mode": {
"type": "string",
"title": "Share Mode",
"default": "private"
},
"source_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Source Language"
},
"target_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Target Language"
},
"reviewed": {
"type": "boolean",
"title": "Reviewed"
},
"meeting_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Meeting Id"
},
"source_kind": {
"$ref": "#/components/schemas/SourceKind"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"room_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Name"
},
"audio_deleted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Audio Deleted"
},
"change_seq": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq"
},
"participants": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/TranscriptParticipantWithEmail"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Participants"
},
"transcript_format": {
"type": "string",
"const": "text",
"title": "Transcript Format",
"default": "text"
},
"transcript": {
"type": "string",
"title": "Transcript"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"status",
"locked",
"duration",
"title",
"short_summary",
"long_summary",
"created_at",
"source_language",
"target_language",
"reviewed",
"meeting_id",
"source_kind",
"participants",
"transcript"
],
"title": "GetTranscriptWithText",
"description": "Transcript response with plain text format.\n\nFormat: Speaker names followed by their dialogue, one line per segment.\nExample:\n John Smith: Hello everyone\n Jane Doe: Hi there"
},
"GetTranscriptWithTextTimestamped": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"name": {
"type": "string",
"title": "Name"
},
"status": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Status"
},
"locked": {
"type": "boolean",
"title": "Locked"
},
"duration": {
"type": "number",
"title": "Duration"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"short_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Short Summary"
},
"long_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Long Summary"
},
"created_at": {
"type": "string",
"title": "Created At"
},
"share_mode": {
"type": "string",
"title": "Share Mode",
"default": "private"
},
"source_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Source Language"
},
"target_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Target Language"
},
"reviewed": {
"type": "boolean",
"title": "Reviewed"
},
"meeting_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Meeting Id"
},
"source_kind": {
"$ref": "#/components/schemas/SourceKind"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"room_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Name"
},
"audio_deleted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Audio Deleted"
},
"change_seq": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq"
},
"participants": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/TranscriptParticipantWithEmail"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Participants"
},
"transcript_format": {
"type": "string",
"const": "text-timestamped",
"title": "Transcript Format",
"default": "text-timestamped"
},
"transcript": {
"type": "string",
"title": "Transcript"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"status",
"locked",
"duration",
"title",
"short_summary",
"long_summary",
"created_at",
"source_language",
"target_language",
"reviewed",
"meeting_id",
"source_kind",
"participants",
"transcript"
],
"title": "GetTranscriptWithTextTimestamped",
"description": "Transcript response with timestamped text format.\n\nFormat: [MM:SS] timestamp prefix before each speaker and dialogue.\nExample:\n [00:00] John Smith: Hello everyone\n [00:05] Jane Doe: Hi there"
},
"GetTranscriptWithWebVTTNamed": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"name": {
"type": "string",
"title": "Name"
},
"status": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Status"
},
"locked": {
"type": "boolean",
"title": "Locked"
},
"duration": {
"type": "number",
"title": "Duration"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"short_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Short Summary"
},
"long_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Long Summary"
},
"created_at": {
"type": "string",
"title": "Created At"
},
"share_mode": {
"type": "string",
"title": "Share Mode",
"default": "private"
},
"source_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Source Language"
},
"target_language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Target Language"
},
"reviewed": {
"type": "boolean",
"title": "Reviewed"
},
"meeting_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Meeting Id"
},
"source_kind": {
"$ref": "#/components/schemas/SourceKind"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"room_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Name"
},
"audio_deleted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Audio Deleted"
},
"change_seq": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq"
},
"participants": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/TranscriptParticipantWithEmail"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Participants"
},
"transcript_format": {
"type": "string",
"const": "webvtt-named",
"title": "Transcript Format",
"default": "webvtt-named"
},
"transcript": {
"type": "string",
"title": "Transcript"
}
},
"type": "object",
"required": [
"id",
"user_id",
"name",
"status",
"locked",
"duration",
"title",
"short_summary",
"long_summary",
"created_at",
"source_language",
"target_language",
"reviewed",
"meeting_id",
"source_kind",
"participants",
"transcript"
],
"title": "GetTranscriptWithWebVTTNamed",
"description": "Transcript response in WebVTT subtitle format with participant names.\n\nFormat: Standard WebVTT with voice tags using participant names.\nExample:\n WEBVTT\n\n 00:00:00.000 --> 00:00:05.000\n <v John Smith>Hello everyone"
},
"HTTPValidationError": {
"properties": {
"detail": {
"items": {
"$ref": "#/components/schemas/ValidationError"
},
"type": "array",
"title": "Detail"
}
},
"type": "object",
"title": "HTTPValidationError"
},
"ICSStatus": {
"properties": {
"status": {
"type": "string",
"enum": [
"enabled",
"disabled"
],
"title": "Status"
},
"last_sync": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Last Sync"
},
"next_sync": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Next Sync"
},
"last_etag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Last Etag"
},
"events_count": {
"type": "integer",
"title": "Events Count",
"default": 0
}
},
"type": "object",
"required": [
"status"
],
"title": "ICSStatus"
},
"ICSSyncResult": {
"properties": {
"status": {
"$ref": "#/components/schemas/SyncStatus"
},
"hash": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Hash"
},
"events_found": {
"type": "integer",
"title": "Events Found",
"default": 0
},
"total_events": {
"type": "integer",
"title": "Total Events",
"default": 0
},
"events_created": {
"type": "integer",
"title": "Events Created",
"default": 0
},
"events_updated": {
"type": "integer",
"title": "Events Updated",
"default": 0
},
"events_deleted": {
"type": "integer",
"title": "Events Deleted",
"default": 0
},
"error": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Error"
},
"reason": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Reason"
}
},
"type": "object",
"required": [
"status"
],
"title": "ICSSyncResult"
},
"Meeting": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"room_name": {
"type": "string",
"title": "Room Name"
},
"room_url": {
"type": "string",
"title": "Room Url"
},
"host_room_url": {
"type": "string",
"title": "Host Room Url"
},
"start_date": {
"type": "string",
"format": "date-time",
"title": "Start Date"
},
"end_date": {
"type": "string",
"format": "date-time",
"title": "End Date"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"is_locked": {
"type": "boolean",
"title": "Is Locked",
"default": false
},
"room_mode": {
"type": "string",
"enum": [
"normal",
"group"
],
"title": "Room Mode",
"default": "normal"
},
"recording_type": {
"type": "string",
"enum": [
"none",
"local",
"cloud"
],
"title": "Recording Type",
"default": "cloud"
},
"recording_trigger": {
"type": "string",
"enum": [
"none",
"prompt",
"automatic",
"automatic-2nd-participant"
],
"title": "Recording Trigger",
"default": "automatic-2nd-participant"
},
"num_clients": {
"type": "integer",
"title": "Num Clients",
"default": 0
},
"is_active": {
"type": "boolean",
"title": "Is Active",
"default": true
},
"calendar_event_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Calendar Event Id"
},
"calendar_metadata": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"title": "Calendar Metadata"
},
"platform": {
"type": "string",
"enum": [
"whereby",
"daily"
],
"title": "Platform"
},
"daily_composed_video_s3_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Daily Composed Video S3 Key"
},
"daily_composed_video_duration": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Daily Composed Video Duration"
}
},
"type": "object",
"required": [
"id",
"room_name",
"room_url",
"host_room_url",
"start_date",
"end_date",
"platform"
],
"title": "Meeting"
},
"MeetingConsentRequest": {
"properties": {
"consent_given": {
"type": "boolean",
"title": "Consent Given"
}
},
"type": "object",
"required": [
"consent_given"
],
"title": "MeetingConsentRequest"
},
"Page_GetTranscriptMinimal_": {
"properties": {
"items": {
"items": {
"$ref": "#/components/schemas/GetTranscriptMinimal"
},
"type": "array",
"title": "Items"
},
"total": {
"type": "integer",
"minimum": 0.0,
"title": "Total"
},
"page": {
"type": "integer",
"minimum": 1.0,
"title": "Page"
},
"size": {
"type": "integer",
"minimum": 1.0,
"title": "Size"
},
"pages": {
"type": "integer",
"minimum": 0.0,
"title": "Pages"
}
},
"type": "object",
"required": [
"items",
"total",
"page",
"size",
"pages"
],
"title": "Page[GetTranscriptMinimal]"
},
"Page_RoomDetails_": {
"properties": {
"items": {
"items": {
"$ref": "#/components/schemas/RoomDetails"
},
"type": "array",
"title": "Items"
},
"total": {
"type": "integer",
"minimum": 0.0,
"title": "Total"
},
"page": {
"type": "integer",
"minimum": 1.0,
"title": "Page"
},
"size": {
"type": "integer",
"minimum": 1.0,
"title": "Size"
},
"pages": {
"type": "integer",
"minimum": 0.0,
"title": "Pages"
}
},
"type": "object",
"required": [
"items",
"total",
"page",
"size",
"pages"
],
"title": "Page[RoomDetails]"
},
"Participant": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"speaker": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Speaker"
},
"name": {
"type": "string",
"title": "Name"
}
},
"type": "object",
"required": [
"id",
"speaker",
"name"
],
"title": "Participant"
},
"ProcessStatus": {
"properties": {
"status": {
"type": "string",
"title": "Status"
}
},
"type": "object",
"required": [
"status"
],
"title": "ProcessStatus"
},
"Room": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"name": {
"type": "string",
"title": "Name"
},
"user_id": {
"type": "string",
"title": "User Id"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At"
},
"zulip_auto_post": {
"type": "boolean",
"title": "Zulip Auto Post"
},
"zulip_stream": {
"type": "string",
"title": "Zulip Stream"
},
"zulip_topic": {
"type": "string",
"title": "Zulip Topic"
},
"is_locked": {
"type": "boolean",
"title": "Is Locked"
},
"room_mode": {
"type": "string",
"title": "Room Mode"
},
"recording_type": {
"type": "string",
"title": "Recording Type"
},
"recording_trigger": {
"type": "string",
"title": "Recording Trigger"
},
"is_shared": {
"type": "boolean",
"title": "Is Shared"
},
"ics_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ics Url"
},
"ics_fetch_interval": {
"type": "integer",
"title": "Ics Fetch Interval",
"default": 300
},
"ics_enabled": {
"type": "boolean",
"title": "Ics Enabled",
"default": false
},
"ics_last_sync": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Ics Last Sync"
},
"ics_last_etag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ics Last Etag"
},
"platform": {
"type": "string",
"enum": [
"whereby",
"daily"
],
"title": "Platform"
},
"skip_consent": {
"type": "boolean",
"title": "Skip Consent",
"default": false
}
},
"type": "object",
"required": [
"id",
"name",
"user_id",
"created_at",
"zulip_auto_post",
"zulip_stream",
"zulip_topic",
"is_locked",
"room_mode",
"recording_type",
"recording_trigger",
"is_shared",
"platform"
],
"title": "Room"
},
"RoomDetails": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"name": {
"type": "string",
"title": "Name"
},
"user_id": {
"type": "string",
"title": "User Id"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At"
},
"zulip_auto_post": {
"type": "boolean",
"title": "Zulip Auto Post"
},
"zulip_stream": {
"type": "string",
"title": "Zulip Stream"
},
"zulip_topic": {
"type": "string",
"title": "Zulip Topic"
},
"is_locked": {
"type": "boolean",
"title": "Is Locked"
},
"room_mode": {
"type": "string",
"title": "Room Mode"
},
"recording_type": {
"type": "string",
"title": "Recording Type"
},
"recording_trigger": {
"type": "string",
"title": "Recording Trigger"
},
"is_shared": {
"type": "boolean",
"title": "Is Shared"
},
"ics_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ics Url"
},
"ics_fetch_interval": {
"type": "integer",
"title": "Ics Fetch Interval",
"default": 300
},
"ics_enabled": {
"type": "boolean",
"title": "Ics Enabled",
"default": false
},
"ics_last_sync": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Ics Last Sync"
},
"ics_last_etag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ics Last Etag"
},
"platform": {
"type": "string",
"enum": [
"whereby",
"daily"
],
"title": "Platform"
},
"skip_consent": {
"type": "boolean",
"title": "Skip Consent",
"default": false
},
"webhook_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Webhook Url"
},
"webhook_secret": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Webhook Secret"
}
},
"type": "object",
"required": [
"id",
"name",
"user_id",
"created_at",
"zulip_auto_post",
"zulip_stream",
"zulip_topic",
"is_locked",
"room_mode",
"recording_type",
"recording_trigger",
"is_shared",
"platform",
"webhook_url",
"webhook_secret"
],
"title": "RoomDetails"
},
"RtcOffer": {
"properties": {
"sdp": {
"type": "string",
"title": "Sdp"
},
"type": {
"type": "string",
"title": "Type"
}
},
"type": "object",
"required": [
"sdp",
"type"
],
"title": "RtcOffer"
},
"SearchResponse": {
"properties": {
"results": {
"items": {
"$ref": "#/components/schemas/SearchResult"
},
"type": "array",
"title": "Results"
},
"total": {
"type": "integer",
"minimum": 0.0,
"title": "Total",
"description": "Total number of search results"
},
"query": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "Search query text"
},
{
"type": "null"
}
],
"title": "Query"
},
"limit": {
"type": "integer",
"maximum": 100.0,
"minimum": 1.0,
"title": "Limit",
"description": "Results per page"
},
"offset": {
"type": "integer",
"minimum": 0.0,
"title": "Offset",
"description": "Number of results to skip"
}
},
"type": "object",
"required": [
"results",
"total",
"limit",
"offset"
],
"title": "SearchResponse"
},
"SearchResult": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"room_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Id"
},
"room_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Name"
},
"source_kind": {
"$ref": "#/components/schemas/SourceKind"
},
"created_at": {
"type": "string",
"title": "Created At"
},
"status": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"minLength": 1,
"title": "Status"
},
"rank": {
"type": "number",
"maximum": 1.0,
"minimum": 0.0,
"title": "Rank"
},
"duration": {
"anyOf": [
{
"type": "number",
"minimum": 0.0
},
{
"type": "null"
}
],
"title": "Duration",
"description": "Duration in seconds"
},
"search_snippets": {
"items": {
"type": "string"
},
"type": "array",
"title": "Search Snippets",
"description": "Text snippets around search matches"
},
"total_match_count": {
"type": "integer",
"minimum": 0.0,
"title": "Total Match Count",
"description": "Total number of matches found in the transcript",
"default": 0
},
"change_seq": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Change Seq"
}
},
"type": "object",
"required": [
"id",
"source_kind",
"created_at",
"status",
"rank",
"duration",
"search_snippets"
],
"title": "SearchResult",
"description": "Public search result model with computed fields."
},
"SourceKind": {
"type": "string",
"enum": [
"room",
"live",
"file"
],
"title": "SourceKind"
},
"SpeakerAssignment": {
"properties": {
"speaker": {
"anyOf": [
{
"type": "integer",
"minimum": 0.0
},
{
"type": "null"
}
],
"title": "Speaker"
},
"participant": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Participant"
},
"timestamp_from": {
"type": "number",
"title": "Timestamp From"
},
"timestamp_to": {
"type": "number",
"title": "Timestamp To"
}
},
"type": "object",
"required": [
"timestamp_from",
"timestamp_to"
],
"title": "SpeakerAssignment"
},
"SpeakerAssignmentStatus": {
"properties": {
"status": {
"type": "string",
"title": "Status"
}
},
"type": "object",
"required": [
"status"
],
"title": "SpeakerAssignmentStatus"
},
"SpeakerMerge": {
"properties": {
"speaker_from": {
"type": "integer",
"title": "Speaker From"
},
"speaker_to": {
"type": "integer",
"title": "Speaker To"
}
},
"type": "object",
"required": [
"speaker_from",
"speaker_to"
],
"title": "SpeakerMerge"
},
"SpeakerWords": {
"properties": {
"speaker": {
"type": "integer",
"title": "Speaker"
},
"words": {
"items": {
"$ref": "#/components/schemas/Word"
},
"type": "array",
"title": "Words"
}
},
"type": "object",
"required": [
"speaker",
"words"
],
"title": "SpeakerWords"
},
"StartRecordingRequest": {
"properties": {
"type": {
"type": "string",
"enum": [
"cloud",
"raw-tracks"
],
"title": "Type"
},
"instanceId": {
"type": "string",
"format": "uuid",
"title": "Instanceid"
}
},
"type": "object",
"required": [
"type",
"instanceId"
],
"title": "StartRecordingRequest"
},
"Stream": {
"properties": {
"stream_id": {
"type": "integer",
"title": "Stream Id"
},
"name": {
"type": "string",
"title": "Name"
}
},
"type": "object",
"required": [
"stream_id",
"name"
],
"title": "Stream"
},
"SyncStatus": {
"type": "string",
"enum": [
"success",
"unchanged",
"error",
"skipped"
],
"title": "SyncStatus"
},
"Topic": {
"properties": {
"name": {
"type": "string",
"title": "Name"
}
},
"type": "object",
"required": [
"name"
],
"title": "Topic"
},
"TranscriptActionItems": {
"properties": {
"action_items": {
"additionalProperties": true,
"type": "object",
"title": "Action Items"
}
},
"type": "object",
"required": [
"action_items"
],
"title": "TranscriptActionItems"
},
"TranscriptDuration": {
"properties": {
"duration": {
"type": "number",
"title": "Duration"
}
},
"type": "object",
"required": [
"duration"
],
"title": "TranscriptDuration"
},
"TranscriptFinalLongSummary": {
"properties": {
"long_summary": {
"type": "string",
"title": "Long Summary"
}
},
"type": "object",
"required": [
"long_summary"
],
"title": "TranscriptFinalLongSummary"
},
"TranscriptFinalShortSummary": {
"properties": {
"short_summary": {
"type": "string",
"title": "Short Summary"
}
},
"type": "object",
"required": [
"short_summary"
],
"title": "TranscriptFinalShortSummary"
},
"TranscriptFinalTitle": {
"properties": {
"title": {
"type": "string",
"title": "Title"
}
},
"type": "object",
"required": [
"title"
],
"title": "TranscriptFinalTitle"
},
"TranscriptParticipant": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"speaker": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Speaker"
},
"name": {
"type": "string",
"title": "Name"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
}
},
"type": "object",
"required": [
"speaker",
"name"
],
"title": "TranscriptParticipant"
},
"TranscriptParticipantWithEmail": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"speaker": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Speaker"
},
"name": {
"type": "string",
"title": "Name"
},
"user_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "User Id"
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Email"
}
},
"type": "object",
"required": [
"speaker",
"name"
],
"title": "TranscriptParticipantWithEmail"
},
"TranscriptSegment": {
"properties": {
"speaker": {
"type": "integer",
"title": "Speaker"
},
"speaker_name": {
"type": "string",
"title": "Speaker Name"
},
"text": {
"type": "string",
"title": "Text"
},
"start": {
"type": "number",
"title": "Start"
},
"end": {
"type": "number",
"title": "End"
}
},
"type": "object",
"required": [
"speaker",
"speaker_name",
"text",
"start",
"end"
],
"title": "TranscriptSegment",
"description": "A single transcript segment with speaker and timing information."
},
"TranscriptText": {
"properties": {
"text": {
"type": "string",
"title": "Text"
},
"translation": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Translation"
}
},
"type": "object",
"required": [
"text",
"translation"
],
"title": "TranscriptText"
},
"TranscriptWaveform": {
"properties": {
"waveform": {
"items": {
"type": "number"
},
"type": "array",
"title": "Waveform"
}
},
"type": "object",
"required": [
"waveform"
],
"title": "TranscriptWaveform"
},
"TranscriptWsActionItems": {
"properties": {
"event": {
"type": "string",
"const": "ACTION_ITEMS",
"title": "Event",
"default": "ACTION_ITEMS"
},
"data": {
"$ref": "#/components/schemas/TranscriptActionItems"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsActionItems"
},
"TranscriptWsDuration": {
"properties": {
"event": {
"type": "string",
"const": "DURATION",
"title": "Event",
"default": "DURATION"
},
"data": {
"$ref": "#/components/schemas/TranscriptDuration"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsDuration"
},
"TranscriptWsFinalLongSummary": {
"properties": {
"event": {
"type": "string",
"const": "FINAL_LONG_SUMMARY",
"title": "Event",
"default": "FINAL_LONG_SUMMARY"
},
"data": {
"$ref": "#/components/schemas/TranscriptFinalLongSummary"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsFinalLongSummary"
},
"TranscriptWsFinalShortSummary": {
"properties": {
"event": {
"type": "string",
"const": "FINAL_SHORT_SUMMARY",
"title": "Event",
"default": "FINAL_SHORT_SUMMARY"
},
"data": {
"$ref": "#/components/schemas/TranscriptFinalShortSummary"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsFinalShortSummary"
},
"TranscriptWsFinalTitle": {
"properties": {
"event": {
"type": "string",
"const": "FINAL_TITLE",
"title": "Event",
"default": "FINAL_TITLE"
},
"data": {
"$ref": "#/components/schemas/TranscriptFinalTitle"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsFinalTitle"
},
"TranscriptWsStatus": {
"properties": {
"event": {
"type": "string",
"const": "STATUS",
"title": "Event",
"default": "STATUS"
},
"data": {
"$ref": "#/components/schemas/TranscriptWsStatusData"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsStatus"
},
"TranscriptWsStatusData": {
"properties": {
"value": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Value"
}
},
"type": "object",
"required": [
"value"
],
"title": "TranscriptWsStatusData"
},
"TranscriptWsTopic": {
"properties": {
"event": {
"type": "string",
"const": "TOPIC",
"title": "Event",
"default": "TOPIC"
},
"data": {
"$ref": "#/components/schemas/GetTranscriptTopic"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsTopic"
},
"TranscriptWsTranscript": {
"properties": {
"event": {
"type": "string",
"const": "TRANSCRIPT",
"title": "Event",
"default": "TRANSCRIPT"
},
"data": {
"$ref": "#/components/schemas/TranscriptText"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsTranscript"
},
"TranscriptWsWaveform": {
"properties": {
"event": {
"type": "string",
"const": "WAVEFORM",
"title": "Event",
"default": "WAVEFORM"
},
"data": {
"$ref": "#/components/schemas/TranscriptWaveform"
}
},
"type": "object",
"required": [
"data"
],
"title": "TranscriptWsWaveform"
},
"UpdateParticipant": {
"properties": {
"speaker": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Speaker"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Name"
}
},
"type": "object",
"title": "UpdateParticipant"
},
"UpdateRoom": {
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Name"
},
"zulip_auto_post": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Zulip Auto Post"
},
"zulip_stream": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Zulip Stream"
},
"zulip_topic": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Zulip Topic"
},
"is_locked": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Is Locked"
},
"room_mode": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Room Mode"
},
"recording_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Recording Type"
},
"recording_trigger": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Recording Trigger"
},
"is_shared": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Is Shared"
},
"webhook_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Webhook Url"
},
"webhook_secret": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Webhook Secret"
},
"ics_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ics Url"
},
"ics_fetch_interval": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Ics Fetch Interval"
},
"ics_enabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Ics Enabled"
},
"platform": {
"anyOf": [
{
"type": "string",
"enum": [
"whereby",
"daily"
]
},
{
"type": "null"
}
],
"title": "Platform"
},
"skip_consent": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Skip Consent"
}
},
"type": "object",
"title": "UpdateRoom"
},
"UpdateTranscript": {
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Name"
},
"locked": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Locked"
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Title"
},
"short_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Short Summary"
},
"long_summary": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Long Summary"
},
"share_mode": {
"anyOf": [
{
"type": "string",
"enum": [
"public",
"semi-private",
"private"
]
},
{
"type": "null"
}
],
"title": "Share Mode"
},
"participants": {
"anyOf": [
{
"items": {
"$ref": "#/components/schemas/TranscriptParticipant"
},
"type": "array"
},
{
"type": "null"
}
],
"title": "Participants"
},
"reviewed": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Reviewed"
},
"audio_deleted": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Audio Deleted"
}
},
"type": "object",
"title": "UpdateTranscript"
},
"UserInfo": {
"properties": {
"sub": {
"type": "string",
"title": "Sub"
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Email"
}
},
"type": "object",
"required": [
"sub",
"email"
],
"title": "UserInfo"
},
"UserTranscriptCreatedData": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id",
"description": "A non-empty string"
}
},
"type": "object",
"required": [
"id"
],
"title": "UserTranscriptCreatedData"
},
"UserTranscriptDeletedData": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id",
"description": "A non-empty string"
}
},
"type": "object",
"required": [
"id"
],
"title": "UserTranscriptDeletedData"
},
"UserTranscriptDurationData": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id",
"description": "A non-empty string"
},
"duration": {
"type": "number",
"title": "Duration"
}
},
"type": "object",
"required": [
"id",
"duration"
],
"title": "UserTranscriptDurationData"
},
"UserTranscriptFinalTitleData": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id",
"description": "A non-empty string"
},
"title": {
"type": "string",
"minLength": 1,
"title": "Title",
"description": "A non-empty string"
}
},
"type": "object",
"required": [
"id",
"title"
],
"title": "UserTranscriptFinalTitleData"
},
"UserTranscriptStatusData": {
"properties": {
"id": {
"type": "string",
"minLength": 1,
"title": "Id",
"description": "A non-empty string"
},
"value": {
"type": "string",
"enum": [
"idle",
"uploaded",
"recording",
"processing",
"error",
"ended"
],
"title": "Value"
}
},
"type": "object",
"required": [
"id",
"value"
],
"title": "UserTranscriptStatusData"
},
"UserWsTranscriptCreated": {
"properties": {
"event": {
"type": "string",
"const": "TRANSCRIPT_CREATED",
"title": "Event",
"default": "TRANSCRIPT_CREATED"
},
"data": {
"$ref": "#/components/schemas/UserTranscriptCreatedData"
}
},
"type": "object",
"required": [
"data"
],
"title": "UserWsTranscriptCreated"
},
"UserWsTranscriptDeleted": {
"properties": {
"event": {
"type": "string",
"const": "TRANSCRIPT_DELETED",
"title": "Event",
"default": "TRANSCRIPT_DELETED"
},
"data": {
"$ref": "#/components/schemas/UserTranscriptDeletedData"
}
},
"type": "object",
"required": [
"data"
],
"title": "UserWsTranscriptDeleted"
},
"UserWsTranscriptDuration": {
"properties": {
"event": {
"type": "string",
"const": "TRANSCRIPT_DURATION",
"title": "Event",
"default": "TRANSCRIPT_DURATION"
},
"data": {
"$ref": "#/components/schemas/UserTranscriptDurationData"
}
},
"type": "object",
"required": [
"data"
],
"title": "UserWsTranscriptDuration"
},
"UserWsTranscriptFinalTitle": {
"properties": {
"event": {
"type": "string",
"const": "TRANSCRIPT_FINAL_TITLE",
"title": "Event",
"default": "TRANSCRIPT_FINAL_TITLE"
},
"data": {
"$ref": "#/components/schemas/UserTranscriptFinalTitleData"
}
},
"type": "object",
"required": [
"data"
],
"title": "UserWsTranscriptFinalTitle"
},
"UserWsTranscriptStatus": {
"properties": {
"event": {
"type": "string",
"const": "TRANSCRIPT_STATUS",
"title": "Event",
"default": "TRANSCRIPT_STATUS"
},
"data": {
"$ref": "#/components/schemas/UserTranscriptStatusData"
}
},
"type": "object",
"required": [
"data"
],
"title": "UserWsTranscriptStatus"
},
"ValidationError": {
"properties": {
"loc": {
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"type": "array",
"title": "Location"
},
"msg": {
"type": "string",
"title": "Message"
},
"type": {
"type": "string",
"title": "Error Type"
},
"input": {
"title": "Input"
},
"ctx": {
"type": "object",
"title": "Context"
}
},
"type": "object",
"required": [
"loc",
"msg",
"type"
],
"title": "ValidationError"
},
"WebhookTestResult": {
"properties": {
"success": {
"type": "boolean",
"title": "Success"
},
"message": {
"type": "string",
"title": "Message",
"default": ""
},
"error": {
"type": "string",
"title": "Error",
"default": ""
},
"status_code": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Status Code"
},
"response_preview": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Response Preview"
}
},
"type": "object",
"required": [
"success"
],
"title": "WebhookTestResult"
},
"WherebyWebhookEvent": {
"properties": {
"apiVersion": {
"type": "string",
"title": "Apiversion"
},
"id": {
"type": "string",
"title": "Id"
},
"createdAt": {
"type": "string",
"format": "date-time",
"title": "Createdat"
},
"type": {
"type": "string",
"title": "Type"
},
"data": {
"additionalProperties": true,
"type": "object",
"title": "Data"
}
},
"type": "object",
"required": [
"apiVersion",
"id",
"createdAt",
"type",
"data"
],
"title": "WherebyWebhookEvent"
},
"Word": {
"properties": {
"text": {
"type": "string",
"title": "Text"
},
"start": {
"type": "number",
"minimum": 0.0,
"title": "Start",
"description": "Time in seconds with float part"
},
"end": {
"type": "number",
"minimum": 0.0,
"title": "End",
"description": "Time in seconds with float part"
},
"speaker": {
"type": "integer",
"title": "Speaker",
"default": 0
}
},
"type": "object",
"required": [
"text",
"start",
"end"
],
"title": "Word"
}
},
"securitySchemes": {
"OAuth2PasswordBearer": {
"type": "oauth2",
"flows": {
"password": {
"scopes": {},
"tokenUrl": "token"
}
}
},
"APIKeyHeader": {
"type": "apiKey",
"in": "header",
"name": "X-API-Key"
}
}
}
}