action art19_get_networks { label: "Get a list of networks" description: "### Deprecations\n\n- The attribute `cover_image_id` has been replaced with the relationship `cover_image`\n and will be removed from the response in a future release.\n" provider: art19 method: GET path: "/networks" encoding: json input: { type: "object" properties: { ad_deal_status: { type: "array" items: { type: "string" enum: ["active", "inactive", "pending_active", "pending_inactive"] } } ad_rep_account_id: { type: "string" format: "uuid" } "ids[]": { type: "array" items: { type: "string" format: "uuid" } } "page[number]": { type: "integer" } "page[size]": { type: "integer" } q: { type: "string" } sort: { type: "array" items: { type: "string" enum: ["created_at", "name", "updated_at"] } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }