Skip to main content
POST
/
v1
/
transcript-property
Create transcript property
curl --request POST \
  --url https://analytics-api.voiceflow.com/v1/transcript-property \
  --header 'Content-Type: application/json' \
  --header 'authorization: <api-key>' \
  --data '
{
  "projectID": "<string>",
  "name": "<string>",
  "type": "boolean"
}
'
{
  "property": {
    "id": "<string>",
    "projectID": "<string>",
    "name": "<string>",
    "type": "<string>",
    "default": true,
    "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
projectID
string
required

ID of the project this property belongs to.

name
string
required

The name of this property.

Required string length: 1 - 100
type
enum<string>
required

The type of value held by this property.

Available options:
boolean,
number,
string

Response

201 - application/json
property
object
required