action clearblade_create_unique_index { label: "DATA - Create Unique Index" description: "This creates a unique index on a column. A user has to do this before you can use upsert with columnName as the conflictColumn. This call will fail if the index already exists." provider: clearblade method: POST path: "/api/v/4/data/{systemKey}/{collectionName}/uniqueindex" 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 } }