Skip to content
Dark mode

Delete a group

Deletes a group on Mindtickle by group ID.

Prerequisites

  1. Authentication and setup: A valid access token.
  2. Create a group: The group must exist.
DELETE /services/data/v2.0/mtobjects/Group/GROUP_ID

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

Headers: Authorization: Bearer ACCESS_TOKEN.

Parameter Type Required Description
GROUP_ID string Required Mindtickle ID of the group.

This endpoint has no request body.

Field Type Description
requestId string or null Request identifier. The response examples return null.
responseCode integer Special response codes from the server.
responseType string Type of response from the server.
taskCompleted boolean Completion flag for this request. This endpoint returns its result directly.
deleted boolean Flag for the group deletion task. true means the group is successfully deleted from Mindtickle.
{
"requestId": null,
"responseCode": 0,
"responseType": "DELETED_RESPONSE",
"taskCompleted": true,
"deleted": true
}