This request allows you to edit an existing customer's core information.
General
A customer is any individual or company that can be associated with a loan. Here's what you need to know about creating customers:
- The
Customers
entity holds a vast amount of information. This request is meant solely to update a customer's basic, personal information. Other forms of information, such as Addresses or Phones, are nested objects within theCustomers
entity; information in these objects can be updated easier via our other, separate update requests listed in the subcategories of the Customers section of our documentation.
For more information on editing core customer information, take a look at our API – Update a Customer article.
And for examples on how customers work within the UI, see our Customer Overview article.
Database
For information on Customer database tables, see the following articles:
- Database – Customer Main Table (customer_entity)
- Database – Customer Status Entity (customer_status_entity)
{
"status": "Active",
"customerType": "customer.type.individual",
"customerIdType": "customer.idType.ssn",
"birthDate": "1980-07-17",
"firstName": "John",
"lastName": "Doe",
"ssn": "132559874",
"driverLicense": "AL3730",
"email": "[email protected]",
"generationCode": "customer.generationCode.none",
"gender": "customer.gender.male",
"__ignoreWarnings": true
}
Try It Instructions
Our requests often provide sample payload information so that you can receive a 200 response from simply hitting the Try It button. This request is ready for you—hit Try It to send the request.
However, if you would like to try this request with your own tenant account, make sure to change the headers to match your own authentication information.