Skip to main content
POST
/
v1
/
transcript-evaluation
/
queue
Queue a Transcript Evaluations
curl --request POST \
  --url https://analytics-api.voiceflow.com/v1/transcript-evaluation/queue \
  --header 'Content-Type: application/json' \
  --data '
{
  "projectID": "<string>",
  "evaluationIDs": [
    "<string>"
  ],
  "transcriptIDs": [
    "<string>"
  ]
}
'
{
  "transcriptCount": 123,
  "evaluationCount": 123,
  "warning": {
    "type": "quota_exceeded",
    "message": "<string>",
    "skippedTranscriptIDs": [
      "<string>"
    ]
  }
}

Body

application/json
projectID
string
required
evaluationIDs
string[]
required
Required array length: 1 - 10 elements
transcriptIDs
string[]
required
Required array length: 1 - 100 elements

Response

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.

transcriptCount
number
required

The total number of transcripts queued for one or more evaluation.

evaluationCount
number
required

The total number of evaluations queued across all transcripts.

warning
object

Returned when the per-project quota for queuing evaluations has been exceeded.