Skip to main content
POST
/
v1
/
transcript-property-value
Set transcript property value
curl --request POST \
  --url https://analytics-api.voiceflow.com/v1/transcript-property-value \
  --header 'Content-Type: application/json' \
  --header 'authorization: <api-key>' \
  --data '
{
  "propertyID": "<string>",
  "transcriptID": "<string>",
  "value": "<string>",
  "metadata": {}
}
'
{
  "propertyValue": {
    "propertyID": "<string>",
    "transcriptID": "<string>",
    "value": "<string>",
    "metadata": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

authorization
string
header
required

Voiceflow Dialog Manager API key (VF.DM) or Workspace API key (VF.WS)

Body

application/json
propertyID
string
required

ID of the transcript property to target.

transcriptID
string
required

ID of the transcript to target.

value
string
required

Value of the transcript property to be set.

metadata
object

Additional metadata associated with the property value.

Response

201 - application/json
propertyValue
object
required