action svix_list_background_tasks_api_v1_background_task_get { label: "List Background Tasks" description: "List background tasks executed in the past 90 days." provider: svix method: GET path: "/api/v1/background-task/" encoding: json input: { type: "object" properties: { "idempotency-key": { type: "string" description: "The request's idempotency key" } iterator: { type: "string" } limit: { type: "integer" } order: { type: "object" } } additionalProperties: false } output: { type: "object" required: ["data", "done"] properties: { data: { type: "array" items: { type: "object" required: ["id", "status", "task", "data"] properties: { data: { type: "object" } id: { type: "string" } status: { type: "string" description: "An enumeration." enum: ["running", "finished", "failed"] } task: { type: "string" description: "An enumeration." enum: ["endpoint.replay", "endpoint.recover", "application.stats"] } } } } done: { type: "boolean" } iterator: { type: "string" } prevIterator: { type: "string" } } } }