Wallet management endpoints
Create a wallet with a verified email address
The one time code generated with the associated POST request must be provided in the request body.
post/user/wallet/register
Request body
Example request
{
"emailAddress": "user@email.com",
"password": "secret-password"
}Response
Successfully submitted request to create wallet
Example response
{
"emailAddress": "myname@email.com",
"active": true,
"clock": 1722600216741
}