action visagecloud_add_collection2_using_post { label: "Create new empty collection with given name" provider: visagecloud method: POST path: "/rest/v1.1/collection/collection" encoding: json input: { type: "object" properties: { accessKey: { type: "string" } collectionName: { type: "string" } evictable: { type: "string" } preload: { type: "string" } purposes: { type: "string" } secretKey: { type: "string" } } required: ["accessKey", "collectionName", "secretKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }