action shutterstock_get_updated_videos { label: "List updated videos" description: "This endpoint lists videos that have been updated in the specified time period to update content management systems (CMS) or digital asset management (DAM) systems. In most cases, use the `interval` parameter to show videos that were updated recently, but you can also use the `start_date` and `end_date` parameters to specify a range of no more than three days. Do not use the `interval` parameter with either `start_date` or `end_date`." provider: shutterstock method: GET path: "/v2/videos/updated" encoding: json input: { type: "object" properties: { end_date: { type: "string" format: "date" } interval: { type: "string" } page: { type: "integer" } per_page: { type: "integer" } sort: { type: "string" enum: ["newest", "oldest"] } start_date: { type: "string" format: "date" } } additionalProperties: false } output: { description: "List of updated media" properties: { data: { type: "array" description: "Updated media items" items: { type: "object" description: "Information about a piece of updated media" required: ["id", "updated_time", "updates"] properties: { id: { type: "string" description: "ID of the media" } updated_time: { type: "string" format: "date-time" description: "Date that the media was updated" } updates: { type: "array" description: "Types of updates that were made to the piece of media" items: { type: "string" } } } } } errors: { type: "array" description: "Error list; appears only if there was an error" items: { type: "object" description: "Error object" required: ["message"] properties: { code: { type: "string" description: "The error code of this error" } data: { type: "string" description: "Debugging information about the error" } items: { type: "array" description: "A list of items that produced the error" items: { type: "object" } } message: { type: "string" description: "Specific details about this error" } path: { type: "string" description: "Internal code reference to the source of the error" } } } } message: { type: "string" description: "Server-generated message, if any" } page: { type: "integer" description: "Current page that is returned" } per_page: { type: "integer" description: "Number of results per page" } total_count: { type: "integer" description: "Total count of all results across all pages" } } } }