action shutterstock_get_image_collection { label: "Get the details of image collections" description: "This endpoint gets more detailed information about a collection, including its cover image and timestamps for its creation and most recent update. To get the images in collections, use `GET /v2/images/collections/{id}/items`." provider: shutterstock method: GET path: "/v2/images/collections/{id}" encoding: json input: { type: "object" properties: { embed: { type: "array" items: { type: "string" enum: ["share_code", "share_url"] } } id: { type: "string" } share_code: { type: "string" } } required: ["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)" } } } }