For Developers
List Jobs
GET https://ed.link/api/v2/graph/jobs
Retrieve a list of all Jobs.
Request Parameters
This query allows for filtering results.
This query allows for standard paging parameters.
| Parameter | Location | Type | Description |
|---|---|---|---|
$first | query | number | Returns the first n elements from the list. |
$last | query | number | Returns the last n elements from the list. |
$before | query | uuid | Returns the elements in the list that come before the specified item. |
$after | query | uuid | Returns the elements in the list that come after the specified item. |
It is best practice to use either $first or $last in conjunction with the $next value returned by the API to paginate through results.
Read More About Paging
Developer Guide
Click to Read
Sample Request
axios.get('https://ed.link/api/v2/graph/jobs', {
headers: {
authorization: `Bearer ${integration_access_token}`
}
});
Sample Response
{
"$request": "00000000-0000-0000-0000-000000000000",
"$data": [
{
"id": "b4d58b56-0d44-41e2-b6e8-d07ec2066b1c",
"created_date": "2022-10-21T14:13:14.827Z",
"updated_date": "2022-10-21T21:19:20.123Z",
"heartbeat_date": "2022-10-21T14:13:14.827Z",
"state": "queued",
"properties": {},
"integration_id": "00000000-0000-0000-0000-000000000000",
"link_id": null
}
]
}
