Skip to main content
PUT
/
transcripts
/
{projectID}
/
{transcriptID}
/
annotation
/
utteranceAddedTo
Create Utterance Annotation
curl --request PUT \
  --url https://api.voiceflow.com/v2/transcripts/{projectID}/{transcriptID}/annotation/utteranceAddedTo \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "turnID": "<string>",
  "intentID": "<string>",
  "utterancesCount": 123
}
'

Authorizations

Authorization
string
header
required

All requests made to the Project API must be validated with the project DM API Key.

Path Parameters

projectID
string
required

Voiceflow project ID

Example:

"63204daf2c4a550006873772"

transcriptID
string
required

Voiceflow transcript ID

Example:

"63204daf2c4a550006873772"

Body

application/json
turnID
string
required

the turn ID which we want to add the utterance to

intentID
string
required

the intent ID which we want to add the utterance to

utterancesCount
integer

the number of uterrances added

Response

200

OK