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

3 Get Application Status

Action

Using the ApplicationId you created in step 2, call the get application status endpoint to return the status of your application..

The possible values for Application Status are NOT_STARTED, ACTIVE, FAILED and COMPLETED.

The possible values for Authorisation Status are AwaitingAuthorisation, Authorised and Rejected.


Method GET
Endpoint https://api.nedbank.co.za/apimarket/sandboxlending-personal/v1/applications/<ApplicationId>
Request
Headers
Header Value Description
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.

Response JSON
                        
{
    "Data": {
        "ApplicationStatus": "COMPLETED",
        "AuthorisationStatus": "Authorised",
        "ProductType": "UnsecuredLoan",
        "CustomerData": {
            "FinancialStatus": "SUCCESS"
        },
        "LendingDetails": {
            "ArrangementId": "600002097836",
            "CaseId": "10001079600",
            "LoanStatus": "ACCEPTED",
            "LoanAmount": 1999,
            "DateTimeLoanProvisioned": "2022-07-21 09:11:29",
            "DisbursalDetails": {
                "ConsolidationAmount": "0.00",
                "MerchantAmount": "0.00",
                "CustomerAmount": "1999.00",
                "CustomerBankName": "NEDBANK",
                "CustomerAccount": "XXXXXX1234",
                "CustomerBankBranchCode": "198765"
            }
        }
    }
}