Create Wallet

Create new wallet and profile it to sweep money off chain or onchain

POST{{ _.base_url }}/api/v1/no-auth/StableCoins/CreateWallet

AUTHORIZATION

Key
Value
Description

Token

<token>

Key
Value
Description

Content-Type

application/json

x-merchant-id

xxxxxxxx

BODY

{

	"user_email": "[email protected]",
	"chain": "usdt-pol",
	"sweep_balance_to_offchain": false
}

EXAMPLE REQUEST

curl --location -g '{{ _.base_url }}/api/v1/no-auth/StableCoins/CreateWallet' \
--header 'Content-Type: application/json' \
--header 'x-merchant-id: xxxxxxxx' \
--data-raw '{

	"user_email": "[email protected]",
	"chain": "usdt-pol",
	"sweep_balance_to_offchain": false
}'

Last updated