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

Update fatca details

Action

Using the heavy access token you received in the heavy token call, proceed to update FATCA details using the endpoint and values below.


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/api/open-banking/v2/customers/fatca
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 heavy token token 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.

Body JSON
                                
{
    "Data": {
        "FatcaDetails": {
            "USCitizen": "Yes",
            "TaxObligation": "No",
            "MultiNation": "No"
        }
    }
}
                                
                                
Response JSON
                            
{
    "Data": {
        "Status": "STATUS_SUCCESS"
    }
}