For Developers
Delete Assignment
DELETE https://ed.link/api/v2/my/classes/:class_id/assignments/:assignment_id
Delete an existing Assignment in the given Class.
The user must be enrolled as a teacher
, ta
, designer
, administrator
, or district-administrator
in the class to use this endpoint.
Request Parameters
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the desired Class. |
assignment_id | string | The UUID of the desired Assignment. |
Sample Request
axios.delete(`https://ed.link/api/v2/my/classes/${class_id}/assignments/${assignment_id}`, {
headers: {
authorization: `Bearer ${person_access_token}`
}
});
Sample Response
The response is empty, with a status code of 200
.