Terminal wallet

GET /api/merchant/terminal/{wallet}/wallets

pass wallet id

Headers

Name
Value
Description

Accept

application/json

CLIENT

client_key

The unique identifier for the client.

SECRET

generated_secret

The expected secret generated using your client key and secret key.

Response

{
    "data": [
        {
            "id": 4,
            "number": "9100279392",
            "currency": "NGN",
            "balance": 0,
            "blockchain": {
                "token_address": "0x_test_evm_address_.PGMf5}fIl",
                "tron_address": "TRX_tron_ton_address_,}wX?4)5PH",
                "ton_address": "UQDZ_test_ton_address_\\x~w8Z3l\\j"
            },
            "bank": {
                "number": "1000000001",
                "provider": "providus"
            }
        }
    ],
    "links": {
        "first": "http://127.0.0.1:8000/api/merchant/terminal/1/wallets?page=1",
        "last": "http://127.0.0.1:8000/api/merchant/terminal/1/wallets?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "http://127.0.0.1:8000/api/merchant/terminal/1/wallets?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "http://127.0.0.1:8000/api/merchant/terminal/1/wallets",
        "per_page": 10,
        "to": 1,
        "total": 1
    }
}

Last updated