Skip to content

Folders

Folders provide structure and hierarchy for various aspects, such as surveys and users, of the HappyOrNot-system.

CodeURL
GET/v1/folders
GET/v1/folders/:key
GET/v1/folders/:key/children
GET/v1/folders/:key/alerts

JSON presentation of folder.

NameDescription
keyThe identifier of the folder
nameThe name of the folder
foldersAn array of folders belonging to the folder (i.e. sub-folders). If a folder does not have sub-folders, this property is not included in the result.
surveysAn array of surveys belonging to the folder. If no surveys are requested or the folder does not contain any surveys, this property is not included in the result.
{
"key": 1,
"name": "Acme",
"folders": [
{
"key": 2,
"name": "Tampere"
},
{
"key": 3,
"name": "New York"
}
]
}

Retrieves information on company’s root folder.

NameDescription
surveysoptional, either true or false When true, folders will include a list of surveys belonging to them.
stateoptional, one of active, ended, starting When this is given and the surveys-parameter is true, folders will include only the list of surveys in the given state.
{
"key": 1,
"name": "How was your day?"
}
{
"key": 1,
"name": "Acme",
"folders": [
{
"key": 2,
"name": "Tampere",
"surveys": [
{
"key": 2,
"question": {
"key": 1,
"name": "How was your day?",
"locale": "en-US"
},
"timeZone": "Europe/Helsinki"
}
]
},
{
"key": 3,
"name": "New York"
}
],
"surveys": [
{
"key": 2,
"question": {
"key": 1,
"name": "How was your day?",
"locale": "en-US"
},
"timeZone": "America/New_York"
}
]
}
NameDescription
SuccessFolders
ErrorHTTP status code 404 when no folder is found.

Retrieves information on folder specified by key.

NameDescription
keyrequired, identifier of folder
surveysoptional, either true or false When true, folders will include a list of surveys belonging to them.
stateoptional, one of active, ended, starting When true, folder-objects will include a list of surveys belonging to them.
GET /v1/folders/3?surveys=true&state=active
Section titled “GET /v1/folders/3?surveys=true&state=active”
{
"key": 3,
"name": "Tampere",
"folders": [
{
"key": 4,
"name": "Hervanta",
"surveys": [
{
"key": 2,
"question": {
"key": 1,
"name": "How was your day?",
"locale": "en-US"
},
"timeZone": "UTC"
}
]
}
],
"surveys": [
{
"key": 1,
"question": {
"key": 1,
"name": "How was your day?",
"locale": "en-US"
},
"timeZone": "UTC"
}
]
}
NameDescription
SuccessFolders
ErrorHTTP status code 404 when no folder is found.

Lists sub-folders of a specified folder.

NameDescription
keyrequired, identifier of folder
surveysoptional, either true or false When true, folders will include a list of surveys belonging to them.
stateoptional, one of active, ended, starting When this is given and the surveys-parameter is true, folders will include only the list of surveys in the given state.
offsetoptional, zero-based numeric value. The index of first result returned and used to paginate results.
limitoptional, numeric value in range 1..100. The number of results returned and used to paginate results Default value is 50 and maximum 100.
{
"meta": {
"offset": 0,
"limit": 50,
"total": 2
},
"data": [
{
"key": 3,
"name": "Tampere"
},
{
"key": 4,
"name": "Helsinki"
}
]
}
NameDescription
SuccessObject containing two properties: meta for additional information (of pagination etc.) and data for a list of folders.
ErrorHTTP status code 404 when no folder is found.