Link a group

POST /v1/channels/{channelId}/groups

Link a group

Path parameters

  • channelId string Required

    The id of the channel

application/json

Body Required

  • groupId string Required

    The id of the group to link

Responses

  • 204

    Group linked successfully

  • 400

    Malformed payload

  • 404

    Channel not found

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