Free Sign Up

Delete Conversation Groups

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';


:::note In Beta Phase
This feature is in the Beta phase. If you have any questions, ideas or suggestions please reach out to us at devrelations@symbl.ai.
:::

This API allows you to delete an existing Conversation Group.

API Endpoint #

Make a DELETE call to the following API:

DELETE https://api.symbl.ai/v1/manage/group/{groupId}

Request Headers #

Header Name Required Description
Authorization Mandatory Bearer <token> The token you get from our authentication process.
Content-Type Mandatory application/json
x-api-key Optional DEPRECATED. The JWT token you get from our authentication process.

Path Parameters #

Parameter Required Description
groupId Mandatory Unique ID of the group created using Management API’s Create Group API endpoint.

Response Body #

The Group object of the deleted group is returned in the response body.

{
  "id": "4931769134481408",
  "type": "group",
  "deleted": true
}