For Developers

Get Section

This endpoint has been formally deprecated. Read more in the Deprecating Sections document.

GET https://ed.link/api/v2/my/sections/:section\_id

Retrieve information about a specific Section in which the current user is enrolled.

Request Parameters

ParameterTypeDescription
section_idstringThe UUID of the desired Section.

Sample Request

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

Sample Response

{
    "$data": {
        "id": "00000000-0000-0000-0000-000000000000",
        "created_date": "2021-07-13T17:45:27.645Z",
        "updated_date": "2021-07-13T17:45:27.645Z",
        "name": "Section 3",
        "description": null,
        "picture_url": null,
        "state": "active",
        "locale": "en",
        "time_zone": "America/Chicago",
        "properties": {},
        "periods": ["06"],
        "class_id": "00000000-0000-0000-0000-000000000000"
    },
    "$request": "00000000-0000-0000-0000-000000000000"
}