For Developers
Get Section
This endpoint has been formally deprecated. Read more in the Deprecating Sections document.
GET https://ed.link/api/v2/graph/sections/:section\_id
Retrieve information about a specific Section.
Request Parameters
| Parameter | Type | Description | 
|---|---|---|
section_id | string | The UUID of the desired Section. | 
Sample Request
axios.get('https://ed.link/api/v2/graph/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"
}