For Developers
Delete Assignment
DELETE https://ed.link/api/v2/graph/classes/:class_id/assignments/:assignment_id
This endpoint deletes the specified assignment.
Request Parameters
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the desired Class. |
assignment_id | string | The UUID of the desired Assignment. |
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.
Assignment Aliases
You can now use Aliases with assignments. For more information, see Assignment Aliases.