Init
Unlock the wallet and return a wallet handle token that can be used for subsequent operations. These tokens expire periodically and must be renewed. You can POST
the token to /v1/wallet/info
to see how much time remains until expiration, and renew it with /v1/wallet/renew
. When you're done, you can invalidate the token with /v1/wallet/release
.
Authorizations
Body
APIV1POSTWalletInitRequest is the request for POST /v1/wallet/init
wallet_idstringOptional
wallet_passwordstringOptional
Responses
200
Response to `POST /v1/wallet/init`
post
POST /v1/wallet/init HTTP/1.1
Host: algo.nownodes.io
X-KMD-API-Token: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 45
{
"wallet_id": "text",
"wallet_password": "text"
}
200
Response to POST /v1/wallet/init
No content
Last updated