action shutterstock_get_contributor_collections { label: "Get details about contributors' collections" description: "This endpoint gets more detailed information about a contributor's collection, including its cover image, timestamps for its creation, and most recent update. To get the items in collections, use GET /v2/contributors/{contributor_id}/collections/{id}/items." provider: shutterstock method: GET path: "/v2/contributors/{contributor_id}/collections/{id}" encoding: json input: { type: "object" properties: { contributor_id: { type: "string" } id: { type: "string" } } required: ["contributor_id", "id"] additionalProperties: false } output: { type: "object" description: "Metadata about a collection of assets" required: ["id", "name", "total_item_count"] properties: { cover_item: { 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" } } } created_time: { type: "string" format: "date-time" description: "When the collection was created" } id: { type: "string" description: "The collection ID" } items_updated_time: { type: "string" format: "date-time" description: "The last time this collection's items were updated" } name: { type: "string" description: "The name of the collection" } share_code: { type: "string" description: "A code that can be used to share the collection (optional)" } share_url: { type: "string" description: "The browser URL that can be used to share the collection (optional)" } total_item_count: { type: "integer" description: "The number of items in the collection" } updated_time: { type: "string" format: "date-time" description: "The last time the collection was update (other than changes to the items in it)" } } } }