Create a wallet
How to create a new blockchain wallet.
Create blockchain wallets and link them to a specific user by userId. You need to specify the blockchain and the userId in the request body. You also need to provide a valid signing method for the user in the header request.
Request Endpoint: reference
HTTP
POST /api/walletsSigning-Method
Header
id:value
id: This is the ID of the signing method
value: This is the value of the signing method
756ae7a7-3713-43ee-9936-0dff50306488:123456
secretType
Body
The blockchain on which to create the wallet
String
β
userId
Body
The ID of the user who you want to link this wallet to
String
β
identifier
Body
Add a custom identifier to group wallets or add a unique external ID. This makes searching for wallets easier.
String
β
description
Body
A description to describe the wallet
String
β
pincode (Deprecated)
Body
The pin that will encrypt and decrypt the wallet
String
β
Request Body:
JSON
{
"secretType": "MATIC",
"userId": "afcdd208-098e-4750-9cb8-30822335f366",
"identifier": "f777cd5c-376f-40a8-87f7-f0336379dd21",
"description": "This is a test wallet"
}Response Body:
πThe wallet has been created an linked to the specified user (
userId).
JSON
Last updated