For Developers
Get Category
GET https://ed.link/api/v2/my/classes/:class\_id/categories/:category\_id
Retrieve information about a specific Category.
Request Parameters
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the desired Class. |
category_id | string | The UUID of the desired Category. |
Sample Request
axios.get(`https://ed.link/api/v2/my/classes/${class_id}/categories/${category_id}`, {
headers: {
authorization: `Bearer ${person_access_token}`
}
});
Sample Response
{
"$data": {
"title": "Example Category",
"updated_date": "2021-12-27T18:53:45.077Z",
"id": "00000000-0000-0000-0000-000000000000"
},
"$request": "00000000-0000-0000-0000-000000000000"
}