PUT
/v1/forums/{forumId}/topics/{topicId}
curl \
--request PUT 'https://openapi.meltingspot.io/v1/forums/{forumId}/topics/{topicId}' \
--header "Content-Type: application/json" \
--data '{"name":"string","content":"string"}'
Request examples
{
"name": "string",
"content": "string"
}
Response examples (200)
{
"id": "string",
"name": "string",
"closedAt": 42
}