action prss_post_api_v2_cddrive_folders { label: "Create a folder." description: "Create a new folder in the customer's private CD Drive." provider: prss method: POST path: "/api/v2/cddrive/folders" encoding: form output: { type: "object" description: "A folder in the CD Drive that can contain other items such as files or folders." required: ["createdDate", "id", "lastModifiedDate", "name", "parentId"] properties: { createdDate: { type: "string" format: "dateTime" description: "The date and time the folder was created." } id: { type: "integer" format: "int64" description: "The ID of the folder." } lastModifiedDate: { type: "string" format: "dateTime" description: "The date and time the folder was last modified. This may only represent a modification to to the folder metadata itself, not to the contents of the folder." } name: { type: "string" description: "The name of the folder." } parentId: { type: "integer" format: "int64" description: "The ID of the parent folder or 0 for the root folder." } } } }