Unlink groups from a live

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

Unlink groups from a live

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

Responses

  • 204

    Groups successfully unlink

  • 400

    Malformed payload

  • 404

    Live not found

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