notification.group.delete

The notification.group.delete command deletes a notification group.

Requires Org-Admin rights.

TR50 Request


                        {
    "cmd": {
        "command": "notification.group.delete",
        "params": {
            "key": "notificationgroup1"
        }
    }
}
      

Request Parameters

Name

Type

Required

Description

key

String

Yes

The key of the group.

TR50 Response

If the command is sent successfully a success message is returned. Otherwise, an error and error message will be returned.


                        {
  "cmd": {
    "success": true
  }
}