action box_get_files_id_watermark { label: "Get watermark on file" description: "Retrieve the watermark for a file." provider: box method: GET path: "/files/{file_id}/watermark" encoding: json input: { type: "object" properties: { file_id: { type: "string" } } required: ["file_id"] additionalProperties: false } output: { type: "object" description: "A watermark is a semi-transparent overlay on an embedded file\npreview that displays a viewer's email address or user ID\nand the time of access over a file's content" properties: { watermark: { type: "object" properties: { created_at: { type: "string" format: "date-time" description: "When this watermark was created" } modified_at: { type: "string" format: "date-time" description: "When this task was modified" } } } } } }