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

2 Register Loan Application

Action

Using the intent access token you received in the previous call, proceed to register a new loan application call to receive an application ID and other details using the endpoint and values below.


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/lending-personal/v1/applications/register
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": {
        "RequestedAmount": {
            "Amount": "REPLACE WITH INITIAL LOAN REQUEST AMOUNT",
            "Currency": "ZAR"
        },
        "MerchantName": "REPLACE WITH NAME TO APPEAR ON PORTAL TO CUSTOMER",
        "CustomerInformation": {
            "CustomerIdentifier": {
                "Value": "REPLACE WITH RSAID NUMBER",
                "Type": "RSAIDENTITY"
            },
            "MobileNumber": "REPLACE WITH CUSTOMER MOBILE NUMBER(ACCEPTABLE FORMATS ARE 082, +2782 or 27872)"
        },
        "ReturnURL": "REPLACE WITH URL FOR APPLICATION TO REDIRECT BACK TO, SUCCESS OR FAILURE"
    }
}
                                
                                
Response JSON
                        
{
    "Data": {
        "ApplicationId": "0052426307384583",
        "ConsentId": "01J84KG2CW7ZH63FS9Y8GHE92R",
        "PortalId": "caa42af8d3b70a12b8fa152d5f4cf8e7bf91328048b66aafde3d879cba1be9f8",
        "LendingPortalUrl": "https://apim-pl-sb.nedbank.co.za/portal/lending/pl/static/?PortalId=caa42af8d3b70a12b8fa152d5f4cf8e7bf91328048b66aafde3d879cba1be9f8",
        "Products": [
            {
                "ProductType": "UnsecuredLoan",
                "Name": "Unsecured Loan"
            }
        ]
    }
}