action art19_get_seasons { label: "Get a list of seasons" description: "When retrieving a list of seasons, the result is automatically filtered depending on the\nprivileges the used credential holds. If there are no specific privileges to a series or network,\nonly active seasons for active series are included.\n" provider: art19 method: GET path: "/seasons" encoding: json input: { type: "object" properties: { "ids[]": { type: "array" items: { type: "string" format: "uuid" } } "page[number]": { type: "integer" } "page[size]": { type: "integer" } q: { type: "string" } series_id: { type: "string" format: "uuid" } sort: { type: "array" items: { type: "string" enum: ["created_at", "sort_title", "title", "updated_at"] } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }