For Developers

Get Job Progress

This endpoint is considered alpha and is subject to change or removal.

GET https://ed.link/api/v2/graph/jobs/:job_id/progress

Retrieve information about a specifc Job's progress.

Request Parameters

ParameterTypeDescription
job_idstringThe UUID of the desired Job.

Sample Request

axios.get('https://ed.link/api/v2/graph/jobs/00000000-0000-0000-0000-000000000000/progress', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$request": "00000000-0000-0000-0000-000000000000",
    "$data": {
        "queued": 3,
        "working": 0,
        "complete": 0,
        "error": 0,
        "canceled": 0,
        "skipped": 0
    }
}