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

2 Request home loans intent ID

Action

Using the Homeloans intent access token you received in the previous call, proceed to make a home loans pre-approval intent call to receive a pre-approval request ID using the endpoint and values below.


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/nb-home-loans/api/open-banking/preapproval-requests
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": [
      "ReadPreapprovalsBasic"
    ],
    "ExpirationDateTime": "2020-04-24T12:07:06.349Z"
  },
  "Risk": {}
}
                                
                                
Response JSON
                        
                        {
    "Data": {
        "PreapprovalRequestId": "02dcd85c-a1fb-417d-a0de-875b79ad56e6",
        "Status": "AwaitingAuthorisation",
        "CreationDateTime": "2019-07-30T11:27:46.968Z",
        "Permissions": [
            "ReadPreapprovalsBasic"
        ],
        "ExpirationDateTime": "2020-04-24T12:07:06.349Z"
    },
    "Risk": {}
}