topics

put/topics/{id}

Path parameters

idinteger required

id of the topic

Request body

assessmentIdinteger
titlestring

Example request

{
  "assessmentId": 1,
  "title": "Project A"
}

Response

topic

messagestring

Example response

{
  "message": "accepted",
  "data": {
    "id": 1,
    "assessmentId": 1,
    "title": "Project A"
  }
}

Changes