> For the complete documentation index, see [llms.txt](https://cramiumlabs.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cramiumlabs.gitbook.io/docs/sdk-mpc-android/usage-guide-for-an-mpc-wallet-app/delete-mpc-group.md).

# Delete MPC Group

To delete an MPC group, use the `deleteGroup()` method with the following attribute: - `keyGenGroupID` : the keygen Group ID of master wallet

**Example**:

```kotlin

    func main() {
        // Create a request to delete the group
        va req = DeleteGroupRequest(groupID: "keyGenGroupID")
        
        // Initialize the client
        va client = MPCClient()
        
        // Delete the MPC group
        client.deleteGroup(req)
    }
```
