action files_get_clickwraps { label: "List Clickwraps" description: "List Clickwraps" provider: files method: GET path: "/clickwraps" encoding: json input: { type: "object" properties: { cursor: { type: "string" } per_page: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "Create Clickwrap" properties: { body: { type: "string" description: "Body text of Clickwrap (supports Markdown formatting)." } id: { type: "integer" format: "int32" description: "Clickwrap ID" } name: { type: "string" description: "Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)" } use_with_bundles: { type: "string" description: "Use this Clickwrap for Bundles?" enum: ["none", "available", "require"] } use_with_inboxes: { type: "string" description: "Use this Clickwrap for Inboxes?" enum: ["none", "available", "require"] } use_with_users: { type: "string" description: "Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password." enum: ["none", "require"] } } } } }