Unlink groups from a course

POST /v1/courses/{courseId}/groups~bulkRemove

Unlink groups from a course

Path parameters

  • courseId string Required

    The id of the course

application/json

Body Required

  • groupIds array[string] Required

    The ids of the groups to link

Responses

  • 204

    Groups unlinked successfully

  • 400

    Malformed payload

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