action shutterstock_delete_video_collection_items { label: "Remove videos from collections" description: "This endpoint removes one or more videos from a collection." provider: shutterstock method: DELETE path: "/v2/videos/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 } }