Delete a notification group
# Delete a Notification Group ### `DELETE /dm/v1/notificationGroups` Use this endpoint to delete a notification group. ## Header Parameters The request header must set the content-type to JSON, contain a current ThingSpace authorization token and a current VZ-M2M session token. For more details on how to get these tokens, visit [Getting Started](https://thingspace.verizon.com/documentation/api-documentation.html#/http/connectivity-management/guides/getting-started/introduction-to-the-connectivity-management-api). |Parameter Name|Data Type|Description| |-----|-----|-----| | **Authorization** *(required)* | string | HTTP Authorization request header containing a valid Bearer token: `Authorization: Bearer {token}` | | **VZ-M2M-Token** *(required)* | string | A valid session token returned by a Connectivity Management `POST /session/login` request. | | **Content-Type** *(required)* | string | Must be `application/json`. | ## HTTP Request [POST https://thingspace.verizon.com/api/dm/v1/notificationGroups](/docs/specialized-apis/sensor-insights/api-endpoints/notification-groups/sensorinsightsdeletenotificationgroup) ## Request Parameters **Note:** All parameters are required unless marked *(optional)* | Parameter | Data Type | Description | | ---------- | --------- | ------------ | | **accountname** | string | The numeric name of the account and must include leading zeros. | | **force** |boolean| | | **id** |string| | ## Request Body Example Request: ```json { "accountname": "0000123456-00001", "force": true, "id": "6737ca22-b24f-2df0-ac1d-84c09f2ede8e" } ``` ## Success Response **Status 204** This is a synchronous response, but there is no response body. Only an HTML 204 will be returned. ## Success Parameters None ## Failure Responses Example Response: ```json { "error": "Error name or code", "error_description": "A longer error description.", "cause": "A cause for the error" } ```