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

2 Request Vehicle Asset Finance Intent ID

Action

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


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/v1/intent
Request
Headers
Header Value Description
Content-Type application/json The data type being sent to the endpoint.
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": [
        "PerformCreditCheckConsent"
    ],
    "ExpirationDateTime": "2024-10-01T20:12:34.615Z"
  },
  "Risk": {}
}
                            
                            
Response JSON
                    
{
    "Data": {
        "intentId": "feab9b5b-7ae2-430f-bdec-25323456b7e9",
        "Status": "AwaitingAuthorisation",
        "CreationDateTime": "2019-09-09T10:32:57.728Z",
        "Permissions": [
            "PerformCreditCheckConsent"
        ],
        "ExpirationDateTime": "2024-10-01T20:12:34.615Z"
    },
    "Risk": {},
    "Links": {
        "self": "https://localhost:3000/apimarket/live/vehicleassetfinance/v1/intent"
    },
    "Meta": {
        "total-pages": 1
    }
}