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>"
]
}
}Voiceflow Dialog Manager API key (VF.DM) or Workspace API key (VF.WS)
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?