curl --request GET \
--url https://api.royalti.io/ddex/queue/jobs/{jobId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "<string>",
"jobType": "<string>",
"status": "pending",
"createdAt": "2023-11-07T05:31:56Z",
"startedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"progress": 123,
"lastProgressMessage": "<string>"
}
}Get a single DDEX queue job (tenant-scoped)
curl --request GET \
--url https://api.royalti.io/ddex/queue/jobs/{jobId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "<string>",
"jobType": "<string>",
"status": "pending",
"createdAt": "2023-11-07T05:31:56Z",
"startedAt": "2023-11-07T05:31:56Z",
"completedAt": "2023-11-07T05:31:56Z",
"progress": 123,
"lastProgressMessage": "<string>"
}
}const response = await fetch('https://api.royalti.io/ddex/queue/jobs/example-id', {
method: 'GET',
});
const data = await response.json();
console.log(data);