For Developers

Get Job Summary

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

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

Retrieve a specifc Job's summary.

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

Sample Response

{
    "$request": "00000000-0000-0000-0000-000000000000",
    "$data": {
        "assignment": {
            "created": 3,
            "updated": 0,
            "deleted": 0
        }
    }
}