Manage Individual Customer

Update Full Name of Individual Customer

VerbURL
PUT{{baseUrl}}/api/v1/customers/update/{customerId}

The request body of the update customer api is same as the create customer. Below is a sample request to update only the individual customer name:

{
  "data": {
    "type": "IndividualCustomer",
    "attributes": {
      "fullName": {
        "firstName": "JOHN",
        "lastName": "DOE",
        "middleName": "JOHN",
        "maidenName": "PHILIP"
      }
    }
  }
}

📘

A customer whose KYC information has been completed can not be updated


Delete Customer

You can update a customer by making a DELETE request to the /api/v1/customers/{customerId} endpoint and providing the customerId

VerbURL
DELETE{{baseUrl}}/api/v1/customers/{customerId}