action clearblade_create_collection_data { label: "DATA(name) - Create items" description: "Creates new data rows in the specified collection." provider: clearblade method: POST path: "/api/v/1/collection/{systemKey}/{collectionName}" encoding: json input: { type: "object" properties: { "ClearBlade-UserToken": { type: "string" } collectionName: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-UserToken", "collectionName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }