# logout

Use this method to disconnect the association between a user's device and a customer identifier.\
For example, do this when the user logs out of their account within your app.

{% tabs %}
{% tab title="Swift" %}

```swift
NamiCustomerManager.logout()
```

{% endtab %}

{% tab title="Kotlin" %}

```kotlin
NamiCustomerManager.logout()
```

{% endtab %}

{% tab title="Flutter" %}

```dart
NamiCustomerManager.logout();
```

{% endtab %}

{% tab title="React Native" %}

```jsx
const onLogoutPress = useCallback(() => {
  NamiCustomerManager.logout((success, error) => {
    console.log('success', success);
    console.log('error', error);
  });
}, []);
```

{% endtab %}

{% tab title="Unity" %}

```c
NamiCustomerManager.Logout();
```

{% endtab %}
{% endtabs %}
