action prss_get_api_v2_cddrive_files_file_id { label: "Get file information." description: "Get the information about a file in the customer's private CD Drive." provider: prss method: GET path: "/api/v2/cddrive/files/{file-id}" encoding: json output: { type: "object" description: "A file in the CD Drive that contains content." required: ["createdDate", "id", "lastModifiedDate", "name", "parentId"] properties: { createdDate: { type: "string" format: "dateTimed" description: "The date and time the file was created." } id: { type: "integer" format: "int64" description: "The ID of the file." } lastModifiedDate: { type: "string" format: "dateTime" description: "The date and time the file was last modified." } name: { type: "string" description: "The name of the file including the extension." } parentId: { type: "integer" format: "int64" description: "The ID of the parent folder or 0 for the root folder." } size: { type: "integer" format: "int64" description: "The size of the file in bytes." } } } }