forum-sections

Forum sections list.

This endpoint will retrieve the forum sections.

get/forum-sections

Response

Successful GET Forum-Sections JSON response

object required

Example response

{
  "data": [
    {
      "id": 1,
      "type": "sections",
      "href": "/v1/forum-sections/1",
      "attributes": {
        "name": "Anime",
        "isLocked": false
      }
    },
    {
      "id": 2,
      "type": "sections",
      "href": "/v1/forum-sections/2",
      "attributes": {
        "name": "Real Life",
        "isLocked": true
      }
    }
  ]
}

Changes