# disconnect

Call the **disconnect** API to disconnect from the SDK secure wallet.

## Method signature

```java
boolean disConnect();
```

## Request parameters

N/A

## Response parameters

| **Item** | **Type** | **Description** | **Required** |
| --- | --- | --- | --- |
| result | Boolean | Whether the disconnection was successful. | Required |

## Sample

```java
manager = ACTapManager.getInstance(this.getApplication());
boolean disconnected = manager.disConnect();
```