Get a forum

GET /v1/forums/{forumId}

Get a forum

Path parameters

  • forumId string Required

    The id of the forum

Responses

  • 200 application/json

    Forum found and returned successfully

    Hide response attributes Show response attributes object
    • id string Required

      The id of the forum.

    • name string Required

      The name of the forum.

    • emoji string

      The emoji of the forum

    • description string Required

      The description of the forum

    • createdAt integer Required

      Timestamp in ms of creation date

    • privacy string Required

      Privacy of the forum

      Values are Private or Secret.

  • 400

    Malformed payload

  • 404

    Forum not found

GET /v1/forums/{forumId}
curl \
 --request GET 'https://openapi.meltingspot.io/v1/forums/{forumId}'
Response examples (200)
{
  "id": "string",
  "name": "string",
  "emoji": "string",
  "description": "string",
  "createdAt": 42,
  "privacy": "Private"
}