Skip to main content

Update a topic

PUT 

https://discourse.example.com/t/-/:id.json

Update a topic

Request

Path Parameters

    id stringrequired

Header Parameters

    Api-Key stringrequired
    Api-Username stringrequired

Body

    topic object
    title stringrequired
    category_id integerrequired

Responses

topic updated

Schema
    basic_topic object
    id integerrequired
    title stringrequired
    fancy_title stringrequired
    slug stringrequired
    posts_count integerrequired
curl -L -X GET 'https://discourse.example.com' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json'
Request Collapse all
Base URL
https://discourse.example.com
Parameters
— pathrequired
— headerrequired
— headerrequired
Body
{
  "topic": {
    "title": "string",
    "category_id": 0
  }
}