Assets

Create a folder

Creates a new folder for organizing file assets. Folder names must be unique within the same parent folder.

post/v1/assets/folders

Request body

namestring required

Display name for the folder. Must be unique among siblings in the same parent folder.

parent_folder_idinteger nullable

The ID of the parent folder. Omit or set to "0" to create at the root level.

Example request

{
  "name": "Banners"
}

Response

The newly created folder.

Example response

{
  "folder": {
    "name": "Banners",
    "created": 1773856017,
    "updated": 1773856017
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.