For Developers

List Licenses

GET https://ed.link/api/v2/graph/licenses

Retrieve a list of all Licenses assigned to this integration.

Request Parameters

This query allows for standard paging parameters.

This query allows for filtering results.

Sample Request

axios.get('https://ed.link/api/v2/graph/licenses', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$data": [
        {
            "id": "00000000-0000-0000-0000-000000000000",
            "product_id": "00000000-0000-0000-0000-000000000000",
            "integration_id": "00000000-0000-0000-0000-000000000000",
            "school_count": 0,
            "class_count": 0,
            "person_count": 0
        }
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}