Link a group

POST /v1/lives/{liveId}/groups

Link a group

Path parameters

  • liveId string Required

    The id of the Live

application/json

Body Required

  • groupId string Required

    The id of the group to link

  • withEmailNotification boolean

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

Responses

  • 204

    Group linked successfully

  • 400

    Malformed payload

  • 404

    Live not found

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