For Developers

Delete Alias

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

This endpoint deletes the specified assignment Alias.

ParameterTypeDescription
class_idstringThe UUID of the desired Class.
assignment_idstringThe UUID of the desired Assignment.
alias_idstringThe alias identifier of the desired Alias. in the format of type:identifier

Response Data

This endpoint returns 204 No Content if the assignment was successfully deleted.

Sample Request

axios.delete('https://ed.link/api/v2/graph/classes/00000000-0000-0000-0000-000000000000/assignments/00000000-0000-0000-0000-000000000000', {
    headers: {
        Authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

This endpoint returns 204 No Content if the assignment was successfully deleted.