Getting jobs
interface JobsPage {
start: number;
length: number;
count: {
waiting: number;
active: number;
completed: number;
failed: number;
},
jobs: JsonJob[];
}curl --location 'http://mydomain.dev/queues/my-queue/jobs?\
statuses=completed,failed&start=10&length=20' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer my-secret-token'curl --location 'http://mydomain.dev/queues/my-queue/jobs/my-job-id
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer my-secret-token'Last updated