Sorry, you need to enable JavaScript to visit this website.

8 Get Balance

Action

Using your clientID and clientSecret (which you obtained when you created an application), you will make a Get request using the endpoint and values below to get the accounts (subscribed for CashOut) balance details. Only Third parties can make use of this operation to check whether funds are available in their accounts (subscribed for CashOut) to create vouchers.

Method GET
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/cashout/v1/accounts/balances
Request
Headers
Header Value Description
x-ibm-client-id <YOUR CLIENT ID> The client ID you received when creating the app on the portal.
x-ibm-client-secret <YOUR CLIENT SECRET> The client secret you received when creating the app on the portal.
x-fapi-financial-id OB/2017/001 Financial ID.
Response JSON
                    
{
    "Data": {
        "Balances": [
            {
                "AccountId": "1234567890",
                "CreditDebitIndicator": "Credit",
                "Type": "InterimAvailable",
                "DateTime": "2025-01-29T10:18:57.952Z",
                "Amount": {
                    "Amount": 2815.4,
                    "Currency": "ZAR"
                }
            },
            {
                "AccountId": "1456789021",
                "CreditDebitIndicator": "Credit",
                "Type": "InterimAvailable",
                "DateTime": "2025-01-29T10:18:57.952Z",
                "Amount": {
                    "Amount": 50000,
                    "Currency": "ZAR"
                }
            }
        ]
    },
    "Links": {
        "Self": "https://api.nedbank.co.za/apimarket/sandbox/cashout/v1/accounts/balances"
    },
    "Meta": {}
}