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

9 Status [POST, DELETE,PUT,GET]

Action

Test the API using a POST, DELETE,GET or PUT operations.


Method Either POST, DELETE, PUT or GET
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/business/v3/status
Request
Headers
Header Value Description
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
    }
}
                                        
                                            
Response-GET JSON
                                        
{
    "message": "This is a GET",
    "Links": {
        "self": "https://localhost:3000/apimarket/live/vehicleassetfinance/v1/status"
    },
    "Meta": {
        "total-pages": 1
    }
}