action clearblade_create_non_unique_index { label: "DATA - Create collection" description: "This creates a non-unique index on a column. This is useful for speeding up certain queries, but doesn't work with upsert. This call will fail if the index already exists." provider: clearblade method: POST path: "/api/v/4/data/{systemKey}/{collectionName}/index" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } collectionName: { type: "string" } columnName: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "collectionName", "columnName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }