For Developers

Get Integration

GET https://ed.link/api/v2/my/integration

Retrieve the Integration that the current user belongs to. This endpoint can be used to determine an integration_id from a bearer token.

Sample Request

axios.get(`https://ed.link/api/v2/my/integration`, {
    headers: {
        authorization: `Bearer ${person_access_token}`
    }
});

Sample Response

{
    "$request": "00000000-0000-0000-0000-000000000000",
    "$data": {
        "state": "active",
        "id": "00000000-0000-0000-0000-000000000000",
        "created_date": "2020-02-14T17:20:06.254Z",
        "updated_date": "2020-02-14T17:20:06.254Z",
        "permissions": [],
        "scope": "all",
        "start_date": null,
        "end_date": null,
        "locked": false,
        "application_id": "00000000-0000-0000-0000-000000000000",
        "source_id": "00000000-0000-0000-0000-000000000000",
        "destination_id": null,
        "region_id": "00000000-0000-0000-0000-000000000000"
    }
}