Create a survey variable
POST/v3/variables
Create a survey variable
Request
- application/json
Body
survey_id numberrequired
Id of Survey
label stringrequired
Possible values: <= 64 characters
name stringrequired
Possible values: <= 35 characters
description string
Possible values: <= 200 characters
type stringrequired
Possible values: [STRING
, NUMBER
, DATE
]
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
data
object
id number
Variable ID
label string
Variable label
name string
Unique identifier for variable
description string
Description for variable
type string
Variable data type
{
"data": {
"id": 1,
"label": "Ticket ID",
"name": "ticket_id",
"description": "Freshdesk ticket id",
"type": "STRING"
}
}
Loading...