Jump to
Ctrl
+
/

Create New Master Wallet

POST
/wallet-as-a-service/wallets/generate

Through this endpoint users can easily create a new Master Wallet through the API. The user provides the desired Wallet name and in return the response includes the walletId. That new Wallet can be additionally also backed up through the Crypto APIs Dashboard.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

Request Body Schema application/json

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

data object Required
item object Required
walletName string Required

Defines the name of the wallet that will be generated.

walletType string Required

Represents if the generated wallet is only for mainnet or only for testnet .

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-25
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
item object Required
walletId string Required

Represents the sender's specific and unique Wallet ID of the sender.

62b9b5c3b97f4b0108092716

Credits Cost : 10000 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2023-04-25",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "walletId": "62b9b5c3b97f4b0108092716"
        }
    }
}