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

6 Status [POST, DELETE,PUT]

Action

Using the access token from the response body you received in the previous "Request token (Heavy)" step, call the Vehicle Asset Finance endpoint to test the service response for a POST, DELETE or PUT operations.


Method Either POST, DELETE or PUT
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/v1/status
Request
Headers
Header Value Description
Content-Type application/json The content type of the data being sent.
Authorization Bearer <ACCESS_TOKEN> Replace with the heavy/submission access token you received from the previous call.
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-POST JSON
                                        
{
    "message": "This is a POST",
    "Links": {
        "self": "https://localhost:3000/apimarket/live/vehicleassetfinance/v1/status"
    },
    "Meta": {
        "total-pages": 1
    }
}
                                        
                                            
Response-DELETE JSON
                                        
{
    "message": "This is a DELETE",
    "Links": {
        "self": "https://localhost:3000/apimarket/live/vehicleassetfinance/v1/status"
    },
    "Meta": {
        "total-pages": 1
    }
}
                                        
                                            
Response-PUT JSON
                                        
{
    "message": "This is a PUT",
    "Links": {
        "self": "https://localhost:3000/apimarket/live/vehicleassetfinance/v1/status"
    },
    "Meta": {
        "total-pages": 1
    }
}