Clarify API
API ReferenceMeeting Recordings

Upload Transcript

POST
/workspaces/{workspace}/meetings/{meetingId}/transcript
Authorization<token>

API key authentication. Send your key in the Authorization header as: api-key <your-api-key>.

In: header

Path Parameters

workspace*string
meetingId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/workspaces/string/meetings/string/transcript" \  -H "Content-Type: application/json" \  -d '{    "transcript": [      {        "words": [          {            "text": "string",            "start_timestamp": 0,            "end_timestamp": 0,            "language": "string",            "confidence": 0          }        ],        "speaker": "string",        "speaker_id": 0,        "language": "string"      }    ]  }'
{
  "data": {
    "type": "record",
    "id": "string",
    "attributes": {},
    "relationships": {}
  }
}