Skip to main content
POST
/
v1
/
transcript-property
Create a Transcript Property
curl --request POST \
  --url https://analytics-api.voiceflow.com/v1/transcript-property \
  --header 'Content-Type: application/json' \
  --data '
{
  "projectID": "<string>",
  "name": "<string>",
  "type": "boolean",
  "description": "<string>"
}
'
{
  "property": {
    "id": "<string>",
    "projectID": "<string>",
    "name": "<string>",
    "description": "<string>",
    "type": "<string>",
    "default": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Body

application/json
projectID
string
required
name
string
required
Required string length: 1 - 100
type
enum<string>
required
Available options:
boolean,
number,
string
description
string

Response

201 - application/json
property
object
required