> ## Documentation Index
> Fetch the complete documentation index at: https://primer.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# showVaultManager

Show Primer's Drop-In Vault Manager.

Vault Manager is used to manage the customer's payment methods stored in the Primer Vault.

Note that there are more options which you can set by passing your SDK settings in the [configure](/sdk/android/v2.x.x/primer/methods/configure) function.

```kotlin KOTLIN theme={"dark"}
fun showVaultManager(context: Context, clientToken: String)
```

## Parameters

<Expandable defaultOpen title="Parameters">
  <ResponseField name="context" type="Context" required>
    Android [Context](https://developer.android.com/reference/android/content/Context.html) of your `Activity` or `Fragment`.
  </ResponseField>

  <ResponseField name="clientToken" type="String" required>
    A client token as returned by the [create client session](/checkout/client-session#create-a-client-session) call.
  </ResponseField>
</Expandable>

## Example

Availing Vault Manager can be done using following code:

```kotlin KOTLIN theme={"dark"}
class CheckoutActivity : AppCompatActivity() {
  // ...

  private fun showVaultManager(clientToken: String) {
    // 👇 Add this
    Primer.instance.showVaultManager(context, clientToken)
  }
}
```
