Availing Vault Manager is as easy as implementing one line of code. Note that there are more options which you have to set by passing your SDK settings in the configure function. Please refer to the section below for more information.

SWIFT
func showVaultManager(clientToken:completion:)

Parameters

Example

Availing Vault Manager is as easy as implementing one line of code:

SWIFT
// 👇 Add this
import PrimerSDK

class MyViewController: UIViewController {

	// ...

	@IBAction func openVaultManagerTapped(_ sender: Any) {

        // 👇 Add this
        Primer.shared.showVaultManager(clientToken: clientToken) { err in
            if let err {
                // Handle the error
            }
        }
    }
}