Get a topic

GET /v1/forums/{forumId}/topics/{topicId}

Get a topic

Path parameters

  • forumId string Required

    The id of the forum

  • topicId string Required

    The id of the topic

Responses

  • 200 application/json

    Topic found and returned successfully

    Hide response attributes Show response attributes object
    • id string Required

      The id of the topic.

    • name string Required

      The name of the topic.

    • closedAt integer | null Required

      Date at which the topic has been closed (Unix timestamp format), or null if the topic is active

  • 400

    Malformed payload

  • 404

    Topic not found

GET /v1/forums/{forumId}/topics/{topicId}
curl \
 --request GET 'https://openapi.meltingspot.io/v1/forums/{forumId}/topics/{topicId}'
Response examples (200)
{
  "id": "string",
  "name": "string",
  "closedAt": 42
}