Add members to 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
POST /v1/channels/{channelId}/spotMembers~bulkAdd

Add members to a channel

Path parameters

  • channelId string Required

    The id of the channel

application/json

Body Required

  • spotMemberIds array[string] Required

    An array of strings representing the unique identifiers of spot members to add to channel

Responses

  • 200 application/json

    Members successfully added

    Hide response attributes Show response attributes object
    • addedSpotMemberIds array[string] Required

      The list of spot member id that were successfully added to the channel.

    • failedSpotMemberIds array[string] Required

      The list of spot member id that failed to be added to the channel.

  • 400

    Malformed payload

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Channel not found

POST /v1/channels/{channelId}/spotMembers~bulkAdd
curl \
 --request POST 'https://openapi.meltingspot.io/v1/channels/{channelId}/spotMembers~bulkAdd' \
 --header "Content-Type: application/json" \
 --data '{"spotMemberIds":["string"]}'
Request examples
{
  "spotMemberIds": [
    "string"
  ]
}
Response examples (200)
{
  "addedSpotMemberIds": [
    "string"
  ],
  "failedSpotMemberIds": [
    "string"
  ]
}