action shutterstock_create_image_collection { label: "Create image collections" description: "This endpoint creates one or more image collections (lightboxes). To add images to the collections, use `POST /v2/images/collections/{id}/items`." provider: shutterstock method: POST path: "/v2/images/collections" encoding: json input: { type: "object" description: "Collection creation request" required: ["name"] properties: { name: { type: "string" description: "The name of the collection" } } } output: { type: "object" description: "Collection creation response" required: ["id"] properties: { id: { type: "string" description: "ID of the new collection" } } } }