Create a new folder in a workspace.
curl -X POST https://app.mavera.io/api/v1/folders \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Marketing Assets",
"workspace_id": "ws_abc123"
}'{
"id": "<string>",
"object": "folder",
"name": "<string>",
"workspace_id": "<string>",
"file_count": 123,
"is_shared": true,
"is_favorite": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.mavera.io/llms.txt
Use this file to discover all available pages before exploring further.
API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Folder created successfully
A folder for organizing files
Unique folder identifier
folder Folder name
Workspace ID
Number of files in the folder
Whether the folder is shared with all workspace members
Whether the folder is in your favorites
curl -X POST https://app.mavera.io/api/v1/folders \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Marketing Assets",
"workspace_id": "ws_abc123"
}'{
"id": "<string>",
"object": "folder",
"name": "<string>",
"workspace_id": "<string>",
"file_count": 123,
"is_shared": true,
"is_favorite": true,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}