For Developers

Get Job

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

Retrieve information about a specifc Job.

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', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$request": "00000000-0000-0000-0000-000000000000",
    "$data": {
        "id": "00000000-0000-0000-0000-000000000000",
        "created_date": "2022-10-24T17:07:33.987Z",
        "updated_date": "2022-10-24T17:07:33.987Z",
        "heartbeat_date": "2022-10-24T17:07:33.987Z",
        "state": "draft",
        "properties": {},
        "integration_id": "00000000-0000-0000-0000-000000000000",
        "link_id": null
    }
}