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

2 Request Wallet Intent ID

Action

Using the access token you received in the previous call, proceed to make a Wallet intent call to receive an intent ID using the endpoint and values below.


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/open-banking/v1/subscriptions
Request
Headers
Header Value Description
Content-Type application/json The data type being sent to the endpoint.
x-fapi-financial-id OB/2017/001 Financial ID
Authorization Bearer <ACCESS_TOKEN> The access token you received from the previous call. Replace <ACCESS_TOKEN> with the access token you received from the Light token step.
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.

Body JSON

For get balance :

                                
{
"Data": {"Permissions": ["ReadBalance"],"WalletId": "55"}
}      
                                
                            

For Peer to Peer:

                                
{
 "Data": {"Permissions": ["DoPeer2Peer"], "WalletId": "55","ToWalletId":"27785654321", "Amount":"70"}
}
OR
{
 "Data": {"Permissions": ["DoPeer2Peer"], "WalletId": "55","ToWalletId":"66", "Amount":"70"}
}     
                                
                            

For EFT/Payment:

                                
{
"Data": { "Permissions": ["DoEFT"],"WalletId": "55", "Amount": "70"}
}    
                                
                            

ATM Withdrawal:

                                
{
"Data": {"Permissions": ["DoATM"],"WalletId": "55", "Amount":"10"}
}   
                                
                            
Response JSON
                    
{
    "Data": {
        "subscription_id": "50b25bc1-0101-476f-8ded-adf6cbb2652d",
        "Status": "AwaitingAuthorisation",
        "CreationDateTime": "2020-01-27T11:16:06.193Z",
        "Permissions": [
            "ReadBalance"
        ]
    },
    "Risk": {},
    "Links": {
        "self": "http://0.0.0.0:3000/api/open-banking/v1/subscriptions/50b25bc1-0101-476f-8ded-adf6cbb2652d"
    },
    "Meta": {
        "total-pages": 1
    }
}