For Developers

Delete Page

DELETE https://ed.link/api/v2/my/classes/:class_id/pages/:page_id

Delete an existing Page 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

ParameterTypeDescription
class_idstringThe UUID of the desired Class.
page_idstringThe UUID of the desired Page.

Sample Request

axios.delete(`https://ed.link/api/v2/my/classes/${class_id}/pages/${page_id}`, {
    headers: {
        authorization: `Bearer ${person_access_token}`
    }
});

Sample Response

The response is empty, with a status code of 200.