Wallet

User wallet

Each Dentity user will have a corresponding wallet. This wallet will be used to save credentials that are issued by the issuer through Dentity. You can see more about how a credential is added to a wallet here.

A user will be created when you call API to create a wallet successfully. If the user already has a Dentity wallet, the API will return the wallet ID.

Create Wallet

POST https://api.dentity.com/core/api/v1/programmatic/wallet

This is the first step in the process. A Dentity wallet must be created before any credentials can be issued to the wallet holder.

Headers

NameTypeDescription

x-api-key*

String

API Key

Request Body

NameTypeDescription

firstName*

String

First name

phoneNumber*

Object

Phone number {

"dialCode": "+1",

"phone": "2048089972" }

email*

String

Email

lastName*

String

Last name

{
   walletId: "62ccf87d452c6c3ab43a815e"
}

Last updated