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

8 Request security questions

Action

Using a light access token and the subscription id you reveiced in the intent call, request security questions for the customer.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/api/enrolment/v1/xds
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 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.
x-nb-subscription-id <SUBSCRIPTION ID> The subscription id you received in the intent call.

Response JSON
                            
{
    "Questions": [
        {
            "Options": [
                {
                    "Value": "false",
                    "OptionText": "None of these",
                    "OptionID": "22269980"
                },
                {
                    "Value": "false",
                    "OptionText": "007 SECURITY SERVICES",
                    "OptionID": "22269977"
                },
                {
                    "Value": "false",
                    "OptionText": "011 DAINFERN",
                    "OptionID": "22269979"
                },
                {
                    "Value": "false",
                    "OptionText": "011 AUTO",
                    "OptionID": "22269978"
                },
                {
                    "Value": "false",
                    "OptionText": "THATHASOKE TRADING",
                    "OptionID": "22269976"
                }
            ],
            "QuestionID": "7003",
            "QuestionText": "Who is your previous/current employer?"
        },
        ...
    ]
    "Status": "SUCCESSFUL"
}