subtopics

put/subtopics/{id}

Path parameters

idinteger required

id of the sub topic

Request body

topicIdinteger
namestring

Example request

{
  "topicId": 1,
  "name": "Subtopic A"
}

Response

sub topic

messagestring

Example response

{
  "message": "accepted",
  "data": {
    "id": 1,
    "topicId": 1,
    "name": "Subtopic A"
  }
}

Changes