notification.group.join

The notification.group.join command allows a user to join a notification group.

TR50 Request


                        {
    "cmd": {
        "command": "notification.group.join",
        "params": {
            "key": "notificationgroup1",
            "userEmail": "user@example.com"
        }
    }
}

      

Request Parameters

Name

Type

Required

Description

key

String

Yes

The key of the group.

userEmail

String

Yes

The email address of the user (Requires Org-Admin rights).

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
  }
}