Create a Folder
Testing
POST
/spaces/{spaceId}/folders
columns
property respects the following format:{
"name": "Column name",
"visible": true
}
"Name", "Licenses", "Categories", "Type", "Status", "Language", "Visibility", "Teachers", "Attendants", "Time", "Payment Model", "Availability", "Total Price", "Subscription Fee", "Remaining amount", "Payment Frequency", "Numbers of Billings", "Single Billing Amount"
spaceId
: Space Id where the folder will be added toname
(required): Folder nameparent
(required): id from its parent foldercolumns
(optional): array of column
object which contain both name
and visible
propertyfolder
object with all their dataRequest Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aladia.io/v2/spaces/661666becf024c47c39a2182/folders' \
--header 'apikey: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Vue.js courses",
"parent": "661666becf024c47c39a2183"
}'
Response Response Example
201 - Success
{
"id": "661666becf024c47c39a2184",
"name": "Vue.js courses",
"parent": "661666becf024c47c39a2183",
"items": 0,
"columns": [],
"subfolders": []
}
Request
Path Params
spaceId
stringÂ
required
Example:
661666becf024c47c39a2182
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Body Params application/json
Responses
Modified at 2025-04-09 14:51:18