Create Folder
POST/medias/folder
Creates a new folder in the media storage
Request
API Version
v3- application/json
- Body
- Example (auto)
Bodyrequired
Location Id
Type of entity (location only)
locationName of the folder to be created
ID of the parent folder (optional)
{
"altId": "sx6wyHhbFdRXh302LLNR",
"altType": "location",
"name": "New Folder",
"parentId": "64af50c42d567a3b4f5989e0"
}
Returns the newly created folder object
- application/json
- Schema
- Example (auto)
Schema
Location identifier that owns this folder
Type of entity that owns the folder
locationName of the folder
ID of the parent folder (null for root folders)
Type of the object (always 'folder' for folders)
Whether the folder has been deleted
Whether there are pending uploads to this folder
Primary category of content stored in the folder
Sub-category of content stored in the folder
Whether the folder is private and not publicly accessible
Whether the folder has been moved from its original location
Whether the data migration process has been completed for this folder
Whether this is a system-generated application folder
Whether the folder is essential and should not be deleted
Current status of the folder
ID of the user who last updated the folder
{
"altId": "sx6wyHhbFdRXh302LLNR",
"altType": "location",
"name": "New Folder",
"parentId": "64af50c42d567a3b4f5989e0",
"type": "folder",
"deleted": false,
"pendingUpload": false,
"category": "image",
"subCategory": "logo",
"isPrivate": false,
"relocatedFolder": false,
"migrationCompleted": true,
"appFolder": false,
"isEssential": false,
"status": "string",
"lastUpdatedBy": "user-uuid-123"
}