Ewallet

Ewallet endpointes

Ewallet List

GET ‎https://<domain>/<api prefix>/<version>/get/wallet-list/

This API endpoint will return a list of enabled wallets.

Headers

Name
Type
Description

apikey*

string

Apikey

Authorization*

string

Bearer access token

HTTP/1.1 200 OK
Content-Type: application/json

Body:
{
    "status_code": 200,
    "errors": {},
    "data": {
        "<wallet_key>": {
            "name": "<wallet_name>"
        },
       "<wallet_key>": {
            "name": "<wallet_name>"
        },
        ...
    }
}

Sample Code

Node

PHP

Last updated

Was this helpful?