action shutterstock_add_image_collection_items { label: "Add images to collections" description: "This endpoint adds one or more images to a collection by image IDs." provider: shutterstock method: POST path: "/v2/images/collections/{id}/items" encoding: json input: { type: "object" properties: { id: { type: "string" } items: { type: "array" description: "List of items" items: { type: "object" description: "Metadata about an item that is part of a collection" required: ["id"] properties: { added_time: { type: "string" format: "date-time" description: "The date the item was added to the collection" } id: { type: "string" description: "ID of the item" } media_type: { type: "string" description: "The media type of the item, such as image, video, or audio" } } } } } required: ["id", "items"] additionalProperties: false } output: { type: "object" additionalProperties: true } }