action shutterstock_list_editorial_video_categories { label: "List editorial video categories" description: "This endpoint lists the categories that editorial videos can belong to, which are separate from the categories that other types of assets can belong to." provider: shutterstock method: GET path: "/v2/editorial/videos/categories" encoding: json output: { type: "object" description: "List of editorial video categories" properties: { data: { type: "array" items: { type: "object" description: "Name of an editorial category" properties: { name: { type: "string" } } } } } } }