curl --request POST \
--url https://analytics-api.voiceflow.com/v1/transcript-evaluation/queue \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"projectID": "<string>",
"evaluationIDs": [
"<string>"
],
"transcriptIDs": [
"<string>"
]
}
'{
"transcriptCount": 123,
"evaluationCount": 123,
"warning": {
"type": "quota_exceeded",
"message": "<string>",
"skippedTranscriptIDs": [
"<string>"
]
}
}Queue a batch of evaluations to run for the specified transcripts.
curl --request POST \
--url https://analytics-api.voiceflow.com/v1/transcript-evaluation/queue \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"projectID": "<string>",
"evaluationIDs": [
"<string>"
],
"transcriptIDs": [
"<string>"
]
}
'{
"transcriptCount": 123,
"evaluationCount": 123,
"warning": {
"type": "quota_exceeded",
"message": "<string>",
"skippedTranscriptIDs": [
"<string>"
]
}
}Documentation Index
Fetch the complete documentation index at: https://docs.voiceflow.com/llms.txt
Use this file to discover all available pages before exploring further.
Voiceflow API key
One or more transcripts were successfully queued for evaluation. A warning will be returned if the per-project queue limit was exceeded including details of all skipped transcripts.
The total number of transcripts queued for one or more evaluation.
The total number of evaluations queued across all transcripts.
Was this page helpful?