Get all surveys
GET/v3/surveys
Get all surveys
Request
Query Parameters
survey_type string
Possible values: [Conversational
, ClassicForm
, Kiosk
, OfflineApp
, NPS
, NPSChat
, CES
, CESChat
, CSAT
, CSATChat
, Employee360
]
Type of survey
archived boolean
Is the survey archived
survey_folder_id number
Survey folder Id of the survey
created_date.gte date
Survey created date greater than or equal to
created_date.lte date
Possible values: <= now characters
Survey created date less than or equal to
updated_date.gte date
Survey updated date greater than or equal to
updated_date.lte date
Possible values: <= now characters
Survey updated date less than or equal to
limit number
Possible values: >= 1
and <= 100
Default value: 50
Number of records you would like in a request
page number
Possible values: >= 1
Page of results
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
Array [
]
has_next_page boolean
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
{
"has_next_page": true,
"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...