Get a group

GET /v1/groups/{groupId}

Get a group

Path parameters

  • groupId string Required

    The id of the group

Responses

  • 200 application/json

    Group found and returned successfully

    Hide response attributes Show response attributes object
    • id string Required

      The id of the group.

    • name string Required

      The name of the group.

    • description string

      The description of the group

    • emoji string

      The emoji of the group

  • 400

    Malformed payload

  • 404

    Group not found

GET /v1/groups/{groupId}
curl \
 --request GET 'https://openapi.meltingspot.io/v1/groups/{groupId}'
Response examples (200)
{
  "id": "string",
  "name": "string",
  "description": "string",
  "emoji": "string"
}