Clone a survey
POST/v3/surveys/:id/clone
Clone a survey
Request
Path Parameters
id numberrequired
Id of Survey
- application/json
Body
survey_type string
Possible values: [Conversational
, ClassicForm
, Kiosk
, OfflineApp
, NPS
, NPSChat
, CES
, CESChat
, CSAT
, CSATChat
, Employee360
]
Survey type to be Cloned.
name string
Possible values: non-empty
and <= 200 characters
Name of the Cloned Survey
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
data
object
id number
name string
archived boolean
survey_type string
created_at date
updated_at date
survey_folder_id number
survey_folder_name string
{
"data": {
"id": 1,
"name": "Employee Satisfaction Survey",
"archived": false,
"survey_type": "Conversational",
"created_at": "2022-02-28T07:25:44.268Z",
"updated_at": "2022-02-28T07:25:44.268Z",
"survey_folder_id": 10000034,
"survey_folder_name": "General"
}
}
Loading...