Wallet transaction

GET /api/merchant/wallet/{wallet}/transactions

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": 28,
            "amount": "125000.00",
            "balance": "9692825.00",
            "type": "DEBIT",
            "desc": "inward|Transfer NGN125000  to Zenith bank(2897836493 Ameti Akpan)",
            "reason": "Transfer",
            "status": "PENDING",
            "bank_code": "003",
            "bank_name": "Zenith bank",
            "acc_number": "2897836493",
            "acc_name": "Ameti Akpan",
            "ref": "d5296137e8e219e02e5ae7098cb4e084",
            "created_at": "2024-10-30T08:00:08.000000Z"
        },
        {
            "id": 29,
            "amount": "25.00",
            "balance": "9692800.00",
            "type": "DEBIT",
            "desc": "Transfer charges",
            "reason": "Charges",
            "status": "APPROVED",
            "ref": "fee_d5296137e8e219e02e5ae7098cb4e084",
            "created_at": "2024-10-30T08:00:08.000000Z"
        },
        {
            "id": 26,
            "amount": "1000.00",
            "balance": "9817850.00",
            "type": "DEBIT",
            "desc": "inward| Transfer NGN 1000 to Mehticpay beneficiary ([email protected])",
            "reason": "Internal Transfer",
            "status": "APPROVED",
            "bank_name": "Mehticpay Business",
            "acc_name": "[email protected]",
            "ref": "d5850e2f6fb514257e9c61d283fc7f35",
            "created_at": "2024-10-30T07:54:15.000000Z"
        },
        {
            "id": 27,
            "amount": "25.00",
            "balance": "9817825.00",
            "type": "DEBIT",
            "desc": "Transfer charges",
            "reason": "Charges",
            "status": "APPROVED",
            "ref": "fee_d5850e2f6fb514257e9c61d283fc7f35",
            "created_at": "2024-10-30T07:54:15.000000Z"
        }
    ],
    "links": {
        "first": "http://127.0.0.1:8000/api/merchant/wallet/1/transactions?page=1",
        "last": "http://127.0.0.1:8000/api/merchant/wallet/1/transactions?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/wallet/1/transactions?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "http://127.0.0.1:8000/api/merchant/wallet/1/transactions",
        "per_page": 100,
        "to": 4,
        "total": 4
    }
}

Last updated