action art19_get_series { label: "Get a list of series" description: "When retrieving a list of series, the result is automatically filtered depending on the\nprivileges the used credential holds. All credentials will have access to active series\nwith a public page enabled (on ART19). Utilizing a filter to limit the result to series\nassociated with your account is recommended.\n" provider: art19 method: GET path: "/series" encoding: json input: { type: "object" properties: { ad_rep_account_id: { type: "string" format: "uuid" } "ids[]": { type: "array" items: { type: "string" format: "uuid" } } network_id: { type: "string" format: "uuid" } "page[number]": { type: "integer" } "page[size]": { type: "integer" } q: { type: "string" } sort: { type: "array" items: { type: "string" enum: ["created_at", "episode_released_at", "sort_title", "title", "updated_at"] } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }