action cpy_get_jobs { label: "List instance jobs" provider: cpy method: GET path: "/api/v1/jobs/{state}" encoding: json input: { type: "object" properties: { state: { type: "string" enum: ["", "active", "completed", "failed", "waiting", "delayed"] } } required: ["state"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { properties: { createdAt: { type: "string" format: "date-time" } data: { type: "object" } error: { type: "object" } finishedOn: { type: "string" format: "date-time" } id: { type: "integer" } processedOn: { type: "string" format: "date-time" } state: { type: "string" enum: ["active", "completed", "failed", "waiting", "delayed"] } type: { type: "string" enum: ["activitypub-http-unicast", "activitypub-http-broadcast", "activitypub-http-fetcher", "activitypub-follow", "video-file-import", "video-transcoding", "email", "video-import", "videos-views-stats", "activitypub-refresher", "video-redundancy", "video-channel-import"] } } } } total: { type: "integer" } } } }