For Developers

Get Category

GET https://ed.link/api/v2/graph/classes/:class\_id/categories/:category\_id

Retrieve information about a specific Category.

Request Parameters

ParameterTypeDescription
class_idstringThe UUID of the desired Class.
category_idstringThe UUID of the desired Category.

Sample Request

axios.get('https://ed.link/api/v2/graph/classes/00000000-0000-0000-0000-000000000000/categories/00000000-0000-0000-0000-000000000000', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$request": "00000000-0000-0000-0000-000000000000",
    "$data": {
        "title": "Example Category",
        "position": 2,
        "updated_date": "2021-12-27T18:53:45.077Z",
        "id": "00000000-0000-0000-0000-000000000000"
    }
}