Update a group

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://help-api.meltingspot.io/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"API MCP server": {
  "url": "https://help-api.meltingspot.io/mcp"
}
Close
PUT /v1/groups/{groupId}

Update a group

Path parameters

  • groupId string Required

    The id of the group

application/json

Body Required

  • name string

    The name of the group

  • description string | null

    The description of the group

  • emoji string | null

    The emoji of the group

Responses

  • 200 application/json

    Group successfully updated

    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

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Group not found

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