List topics

GET /v1/forums/{forumId}/topics

List topics

Path parameters

  • forumId string Required

    The id of the forum

Query parameters

  • page integer | null

    The page number in a paginated set of results

  • limit integer | null

    The limit of results to be returned per page

  • name[eq] string

    Search Topic with a specified name

  • name[contains] string

    Search Topic that contains this value in his name

Responses

  • 200 application/json

    Topics returned successfully

    Hide response attributes Show response attributes object
    • items array[object] Required

      The items found

      Hide items attributes Show items 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

    • total integer Required

      The total number of items found

  • 400

    Malformed payload

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