action shutterstock_create_video_collection { label: "Create video collections" description: "This endpoint creates one or more collections (clipboxes). To add videos to collections, use `POST /v2/videos/collections/{id}/items`." provider: shutterstock method: POST path: "/v2/videos/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" } } } }