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.
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the desired Class. |
assignment_id | string | The UUID of the desired Assignment. |
alias_id | string | The 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.