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

2 Request customer intent ID

Action

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


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/open-banking/customer-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": [
            "ReadCustomersDetail",
            "ReadCustomersBasic"
        ],
        "ExpirationDateTime": "2021-05-02T00:00:00-00:00"
    },
    "Risk": {
    }
}
                                
                                
Response JSON
                        
{
    "Data": {
        "CustomerRequestId": "95fce529-13e8-4fe8-9583-76829c5e942b",
        "Status": "AwaitingAuthentication",
        "CreationDateTime": "2018-08-30T08:03:39.256Z",
        "Permissions": [
            "ReadCustomersDetail",
            "ReadCustomersBasic"
        ],
        "ExpirationDateTime": "2021-05-02T00:00:00-00:00"
    },
    "Risk": {},
    "Links": {
        "self": "http://0.0.0.0:3000/api/open-banking/customer-requests/95fce529-13e8-4fe8-9583-76829c5e942b"
    },
    "Meta": {
        "total-pages": 1
    }
}