Unlink groups from a channel

POST /v1/channels/{channelId}/groups~bulkRemove

Unlink groups from a channel

Path parameters

  • channelId string Required

    The id of the channel

application/json

Body Required

  • groupIds array[string] Required

    The ids of the groups to link

Responses

  • 204

    Groups successfully unlink

  • 400

    Malformed payload

  • 404

    Channel not found

POST /v1/channels/{channelId}/groups~bulkRemove
curl \
 --request POST 'https://openapi.meltingspot.io/v1/channels/{channelId}/groups~bulkRemove' \
 --header "Content-Type: application/json" \
 --data '{"groupIds":["string"]}'
Request examples
{
  "groupIds": [
    "string"
  ]
}