action shutterstock_get_editorial_image_livefeed_list { label: "Get editorial livefeed list" provider: shutterstock method: GET path: "/v2/editorial/images/livefeeds" encoding: json input: { type: "object" properties: { country: { type: "string" format: "country-code-3" } page: { type: "integer" } per_page: { type: "integer" } } required: ["country"] additionalProperties: false } output: { type: "object" description: "List of editorial livefeeds" required: ["data", "total_count"] properties: { data: { type: "array" description: "Editorial livefeeds" items: { type: "object" description: "Metadata about editorial livefeed" required: ["id", "name", "total_item_count"] properties: { cover_item: { type: "object" description: "Cover image for editorial livefeed" required: ["id", "url"] properties: { height: { type: "integer" } id: { type: "string" } url: { type: "string" } width: { type: "integer" } } } created_time: { type: "string" format: "date-time" description: "When the livefeed was initially created" } id: { type: "string" description: "Livefeed ID" } name: { type: "string" description: "Name of the livefeed" } total_item_count: { type: "integer" description: "Total count of items in the livefeed" } } } } message: { type: "string" description: "Optional error message" } page: { type: "integer" description: "Current page of the response" } per_page: { type: "integer" description: "Number of results per page" } total_count: { type: "integer" description: "Total count of all results" } } } }