Link groups

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

Link groups

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 linked successfully

  • 400

    Malformed payload

  • 404

    Channel not found

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