Unlink a group from a channel

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
DELETE /v1/channels/{channelId}/groups/{groupId}

Unlink a group from a channel

Path parameters

  • channelId string Required

    The id of the channel

  • groupId string Required

    The id of the group

Responses

  • 204

    Group successfully unlink

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Channel or Group not found

DELETE /v1/channels/{channelId}/groups/{groupId}
curl \
 --request DELETE 'https://openapi.meltingspot.io/v1/channels/{channelId}/groups/{groupId}'