All Merchant Payouts


v2 GET console.bayar.cash/api/v2/payouts v3 GET api.console.bayar.cash/v3/payouts


Enterprise partners are able to retrieve settlement summary for all merchants registered from their API key. Example of JSON structured response.

{
    "data": [
        {
            "id": "pay_YZ6jNY",
            "created_at": "2024-11-01 14:20:06",
            "status": "Processing",
            "package_subscription_id": 399,
            "payment_channel": "FPX",
            "reference_number": "P11229399384849",
            "split_payout": "Parent",
            "bank_transaction": null,
            "amount": "97.00"
        }
    ],
    "links": {
        "first": "https://api.console.bayar.cash/v3/payouts?page=1",
        "last": "https://api.console.bayar.cash/v3/payouts?page=2",
        "prev": null,
        "next": "https://api.console.bayar.cash/v3/payouts?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 2,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "https://api.console.bayar.cash/v3/payouts?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "https://api.console.bayar.cash/v3/payouts?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "https://api.console.bayar.cash/v3/payouts?page=2",
                "label": "Next »",
                "active": false
            }
        ],
        "path": "https://api.console.bayar.cash/v3/payouts",
        "per_page": 15,
        "to": 15,
        "total": 27
    }
}

Last updated