action clearblade_get_collection_data { label: "DATA(name) - Get items" description: "Returns the data from the specified collection." provider: clearblade method: GET path: "/api/v/1/collection/{systemKey}/{collectionName}" encoding: json input: { type: "object" properties: { "ClearBlade-UserToken": { type: "string" } collectionName: { type: "string" } query: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-UserToken", "collectionName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }