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