Create a group

POST /v1/groups

Create a group

application/json

Body Required

  • name string Required

    The name of the group

  • description string

    The description of the group

  • emoji string

    The emoji of the group

Responses

  • 201 application/json

    Group has been successfully created

    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

POST /v1/groups
curl \
 --request POST 'https://openapi.meltingspot.io/v1/groups' \
 --header "Content-Type: application/json" \
 --data '{"name":"string","description":"string","emoji":"string"}'
Request examples
{
  "name": "string",
  "description": "string",
  "emoji": "string"
}
Response examples (201)
{
  "id": "string",
  "name": "string",
  "description": "string",
  "emoji": "string"
}