Skip to content
Dark mode

Remove groups from a module

Removes one or more Mindtickle groups from a module of a Mindtickle series.

Prerequisites

  1. Authentication and setup: A valid access token.
  2. Invite groups to a module: The groups must be invited to the module.
POST /services/data/v4.0/mtobjects/Series/SERIES_ID/Module/MODULE_ID/Groups/delete

Base URL: the standard REST host for your region. See Base URLs.

Headers: Authorization: Bearer ACCESS_TOKEN, Content-Type: application/json.

Parameter Type Required Description
SERIES_ID string Required Mindtickle ID of the series from which you want to remove groups.
MODULE_ID string Required Mindtickle ID of the module from which you want to remove groups.
Parameter Type Required Description
groupIds Array[string] Required Mindtickle IDs of the groups that you want to remove. Send each ID as a separate string in the JSON array.
{
"groupIds": ["1234567890123456101", "1234567890123456102", "1234567890123456103"]
}
Field Type Description
processId string Mindtickle process ID. Pass it as an item in the processIds array when checking process status.
{
"processId": "1234567890123456104"
}
  • Async processing: The request is queued, and the response returns a process ID you use to check the result.
  • Limits: You can remove a maximum of 20 groups per request.