List All Folders
Testing
GET
/spaces/{spaceId}/folders/
spaceId
: Space Id from which the list of folders will be returnedsubfolders
in the data property aswell as the cursor pagination.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.aladia.io/v2/spaces/6641d48fcdfefc4c30828193/folders/?limit=50&next=&prev=&sortBy=&sortDirection=asc' \
--header 'apikey: '
Response Response Example
200 - Success
{
"cursor": {
"next": "6656da973c9924e4dcc7f7ce",
"prev": null,
"totalItems": 3
},
"data": [
{
"subFolders": [],
"id": "6656da973c9924e4dcc7f7ce",
"name": "Vue.js courses",
"parent": "6655b3f156af8d342897a004",
"items": 0,
"columns": []
}
]
}
Request
Path Params
spaceId
stringÂ
required
Example:
6641d48fcdfefc4c30828193
Query Params
limit
integerÂ
optional
Default:
50
next
stringÂ
optional
prev
stringÂ
optional
sortBy
stringÂ
optional
sortDirection
enum<string>Â
optional
Allowed values:
ascdesc
Default:
asc
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Responses
Modified at 2025-04-12 09:42:36