Wallets
The Sendsprint Wallet system allows you to create and manage multi-currency wallets in the currencies we support.
You can have multiple wallets associated with your Sendsprint Business profile, unfortunately, you cannot create multiple same currency wallets.
Create
This endpoint is used to create a wallet for a currency you wish to transact with.
{baseUrl}/developer/createwallet{
"Currency": "string",
"Description": "string"
}curl --location --request POST '{baseUrl}/developer/createwallet' \
--header 'Content-Type: application/json' \
--header 'Authorization: bearer_token' \
--data '{
"Currency": "string",
"Description": "string"
}'{
"ResponseCode": "00",
"ResponseMessage": "Successful",
"Data": null
}Retrieve
This endpoint is used to get all your wallets.
Last updated