Skip Navigation

METHOD_RemoveGroup

This method sends a request to 
BEMS
 to remove a group from the user's contact list.
To remove a group, contacts must be removed from the group first. If participants are still in the group, the user receives an error. 
The following table describes the parameters that you can include in this method.
Parameter
Type
Required
Description
groupId
String
This parameter specifies the ID of the group to remove. 
dependencies
String
This parameter specifies the other methods that this method is dependent on. It specifies the comma delimited dependent request IDs.
reconnect
String
This parameter specifies that the 
BlackBerry Connect
 app re-establish the existing session. For example, if 
BlackBerry Connect
 goes to the background, when it comes to the foreground the same session is continued. 

BEMS
 response and notification

The following table describes the parameters that 
BEMS
 returns and the notification that is sent to the 
BlackBerry Connect
 app when a group is removed from the contact list.
Parameter
Type
Description
method
String
This parameter specifies the invoked method (for example, RemoveGroup). 
state
String
This parameter specifies the state of the request to 
BEMS
 (for example, Processing or Complete). 
message
String
This parameter specifies the message that is sent to the 
BlackBerry Connect
 app.

Example code

The following example sends a request to 
BEMS
 to remove a group  from the user's 
BlackBerry Connect
 app contact list.
{ "method":"RemoveGroup", "params": { "groupId":"1" }, "id":"c14", "jsonrpc":"2.0" }
If the request is successful, 
BEMS
 sends the following response to the 
BlackBerry Connect
 app and processes the request.
{ "id":"c14", "error":null, "result": { "data": { "method":"RemoveGroup", "state":"PROCESSING" } }, "jsonrpc":"2.0", "background": false }
If there are no errors, 
BEMS
 sends the following notification to the 
BlackBerry Connect
 app and the group is removed.
{ "id":"c58", "sequence":1018691700000049, "result": { "data": { "method":"RemoveGroup", "state":"COMPLETE" } }, "jsonrpc":"2.0" }