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

2 Request personal loans subscription ID.

Action

Using the intent access token you received in the previous call, proceed to make a personal loans intent call to receive a subscription 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.
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
                                
{
 "Data": {
   "Permissions": [
     "READ_FINANCIAL_INFO",
     "VERIFY_IDENTIFICATION",
     "ACCESS_CUSTOMER_INFO",
     "APPLY_FOR_LOAN"
   ],
   "ExpirationDateTime": "2020-05-06T00:00:00-00:00"
 },
 "Risk": {}
}

                                
                                
Response JSON
                        
{
    "Data": {
        "subscription_id": "8b6c9eb2-9e17-4d50-a3f2-433e3f836f79",
        "Status": "AwaitingAuthorisation",
        "CreationDateTime": "2019-12-05T09:20:32.794Z",
        "Permissions": [
            "READ_FINANCIAL_INFO",
            "VERIFY_IDENTIFICATION",
            "ACCESS_CUSTOMER_INFO",
            "APPLY_FOR_LOAN"
        ],
        "ExpirationDateTime": "2020-05-06T00:00:00-00:00"
    },
    "Risk": {},
    "Links": {
        "self": "http://0.0.0.0:3000/api/open-banking/v1/subscriptions/8b6c9eb2-9e17-4d50-a3f2-433e3f836f79"
    },
    "Meta": {
        "total-pages": 1
    }
}