forum-sections

Forum section details.

This endpoint will retrieve the details for a forum section.

get/forum-sections/{sectionID}

Path parameters

sectionIDinteger required

ID of the forum section.

Response

Successful GET Forum-Sections Details JSON response.

object required

Example response

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

Changes