Wallet routes
A wallet comprises a private key, a public key, and many addresses. To enable a user to accept tokens or digital assets, create a wallet for them using our API.
You can create one wallet per blockchain.
Here are routes for the profile management.
Create a wallet
This operation creates a wallet
POST
https://sandbox.oumla.com/api/v1/wallets/
generate
Headers
x-api-key*
string
The API key generated from Oumla's dashboard
Request body
reference *
string
Any identifer for this user this could be the UUID for the user or profile
network*
NetworkType
One of the network types that we support. like for example "ETH"
Sample code of the request:
The expected response:
Get Wallets
This operation to get wallets by organization
organization
GET
https://sandbox.oumla.com/api/v1/wallets/
organization
Headers
x-api-key*
string
Oumla api key
Sample code of the request:
The expected response:
This operation to get wallets by reference
reference
GET
https://sandbox.oumla.com/api/v1/wallets/
profile
/
{{reference}}
Query Parameters (required)
reference*
string
the id for that user.
Headers
x-api-key*
string
Oumla api key
Sample code of the request:
The expected response:
Last updated