Questions
Getting questions from Feedbackly
Questions
GET
https://api.feedbackly.com/v5/questions
This endpoint returns the questions of all surveys accessable from your account
Query Parameters
skip
number
Number of documents to skip from the start
preferredLanguage
string
Preferred language to show the question titles in eg. 'en'. If the specified language is not available, it will default to the first available language
questionId
array
Filter by question ids
surveyId
array
Survey ids related to the question
Headers
Authorization
string
Authentication token to access the API eg: 'Authorization': 'ey0iuefg.834xcunerun348efnsd'
Request Return type
Field
Type
Example
Description
data
Question objects
paging
Pagination object
Question by id
GET
https://api.feedbackly.com/v5/questions/:id
Gets a specific question by id
Path Parameters
id
string
Question id
Query Parameters
preferredLanguage
string
Preferred language to show the question titles in eg. 'en'. If the specified language is not available, it will default to the first available language
Headers
Authorization
string
Authentication token to access the API eg: 'Authorization': 'ey0iuefg.834xcunerun348efnsd'
Question data object
Field
Type
Example
Description
choicesString
string[]
["Lamb", "Beef", "Pork"]
List of available choices in the preferred language (Word/Image)
title
string
"Which meat did you buy?"
Question title in the preferred language
questionType
string
"Button"
_id
string
"59b8de18784d2f0001a1590d"
Question id
languages
string[]
["en", "es"]
List of available languages for the question
language
string
"en"
The language currently selected to display titles etc
subtitle?
string
"Please select from below"
A subtitle for the question (if specified)
choices
array
Array of possible choices
> fieldId
string
"1"
The id of the field
> fieldName
string
"Beef"
The label of the choice
> type?
string
"string"
Type of field (Contact question type)
> subType?
string
"phone"
Subtype of the field (Contact question type)
> imageUrl?
string
"https://example.com/1.png"
Image url of the choice (Image question type)
Last updated