action clearblade_get_indexes { label: "DATA - Get list of indexes" description: "This returns all USER CREATED indexes/constraints for the collection.For safety, primary key indexes are not returned." provider: clearblade method: GET path: "/api/v/4/data/{systemKey}/{collectionName}/listindexes" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } collectionName: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "collectionName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }