Fetch a cached resolution
GET
/speaker-context/get
const url = 'https://my-instance.example.com/speaker-context/get?meetingId=example&transcriptVersion=example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://my-instance.example.com/speaker-context/get?meetingId=example&transcriptVersion=example' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” meetingId
required
string
transcriptVersion
required
string
Responses
Section titled “ Responses ”The cached resolution object.
Media type application/json
object
key
additional properties
any
Example generated
{}meetingId or transcriptVersion is missing.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "meetingId and transcriptVersion are required"}The bearer token is missing or wrong.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "Unauthorized"}No resolution is cached for that meeting and version.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "resolution not found"}