For Developers

List Aliases

GET https://ed.link/api/v2/graph/classes/:class_id/assignments/:assignment_id/aliases

Retrieve a list of Aliases for a given class.

ParameterTypeDescription
class_idstringThe UUID of the desired Class.
assignment_idstringThe UUID of the desired Assignment.

Sample Request

axios.get(`https://ed.link/api/v2/graph/classes/${class_id}/assignments/${assignment_id}/aliases`, {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$request": "f3df3a44-9303-4ad8-9815-77e37521b66d",
    "$data": [
        {
            "identifier": "108",
            "type": "edlink"
        },
        {
            "identifier": "110",
            "type": "edlink"
        },
        {
            "identifier": "101",
            "type": "atlas"
        },
        {
            "identifier": "3",
            "type": "atlas"
        }
    ]
}