action art19_get_credits { label: "Get a list of credits" provider: art19 method: GET path: "/credits" encoding: json input: { type: "object" properties: { creditable_id: { type: "string" format: "uuid" } creditable_type: { type: "string" enum: ["Series", "Season", "Episode"] } "ids[]": { type: "array" items: { type: "string" format: "uuid" } } "page[number]": { type: "integer" } "page[size]": { type: "integer" } sort: { type: "array" items: { type: "string" enum: ["created_at", "position", "updated_at"] } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }