Link groups

POST /v1/lives/{liveId}/groups~bulkAdd

Link groups

Path parameters

  • liveId string Required

    The id of the Live

application/json

Body Required

  • groupIds array[string] Required

    The ids of the groups to link

  • withEmailNotification boolean

    To send an email notification to each added member. Disable by default.

Responses

  • 204

    Groups linked successfully

  • 400

    Malformed payload

  • 404

    Live not found

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