Skip to content
Dark mode

Invite groups to a module

Invites one or more Mindtickle groups to a module of a Mindtickle series.

Prerequisites

  1. Authentication and setup: A valid access token.
  2. Create a group: The groups must exist.
  3. List all modules in a series: The module must exist, and you need its ID and its series ID.
POST /services/data/v4.0/mtobjects/Series/SERIES_ID/Module/MODULE_ID/Groups/add

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 that you want to assign to one or more groups.
MODULE_ID string Required Mindtickle ID of the module that you want to assign to one or more groups.
Parameter Type Required Description
groupIds Array[string] Required Mindtickle IDs of the groups that you want to invite to the module. 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 invite a maximum of 20 groups per request.