action shutterstock_delete_image_collection_items { label: "Remove images from collections" description: "This endpoint removes one or more images from a collection." provider: shutterstock method: DELETE path: "/v2/images/collections/{id}/items" encoding: json input: { type: "object" properties: { id: { type: "string" } item_id: { type: "array" items: { type: "string" } } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }