For Developers
Delete Category
DELETE https://ed.link/api/v1/my/classes/:class\_id/categories/:category\_id
This endpoint deletes the specified Category.
Request Parameters
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the desired Class. |
category_id | string | The UUID of the Category. to delete. |
Sample Request
axios.delete('https://ed.link/api/v1/my/courses/8ab9c040-d458-4746-9bea-99f4b5066f17/assignments/74de393e-a5bc-43ee-b431-7826dfc59300', {
headers: {
Authorization: `Bearer ${user_access_token}`
}
});
Sample Response
This endpoint returns 204 No Content
if the assignment was successfully deleted.