action shutterstock_rename_track_collection { label: "Rename audio collections" description: "This endpoint sets a new name for a collection." provider: shutterstock method: POST path: "/v2/audio/collections/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } name: { type: "string" description: "The new name of the collection" } } required: ["id", "name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }