action clearblade_create_bucket_file { label: "FILES - Creates a new file in a bucket" description: "Creates a new file in bucket" provider: clearblade method: POST path: "/api/v/4/bucket_sets/{systemKey}/{deploymentName}/file/create" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } deploymentName: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "deploymentName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }