Skip to content

Resolve speaker context for a meeting

POST
/speaker-context/run
curl --request POST \
--url 'https://my-instance.example.com/speaker-context/run?meetingId=example' \
--header 'Authorization: Bearer <token>'
meetingId
required
string
transcriptVersion
string

Looked up from the meeting if omitted.

The resolution summary.

Media type application/json
object
meetingId
string
transcriptVersion
string
lineCount
integer
ambiguousCount
integer
Example generated
{
"meetingId": "example",
"transcriptVersion": "example",
"lineCount": 1,
"ambiguousCount": 1
}

meetingId is missing.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "meetingId is required"
}

The bearer token is missing or wrong.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "Unauthorized"
}

The meeting was not found.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "meeting not found"
}

The resolution failed.

Media type application/json
object
error
required
string
code
string
Example generated
{
"error": "example",
"code": "example"
}