action prss_get_api_v2_cddrive_folders_folder_id { label: "UNDER DEVELOPMENT - Get folder information." description: "Get the information about a folder in the customer's private CD Drive." provider: prss method: GET path: "/api/v2/cddrive/folders/{folder-id}" encoding: json 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." } } } }