post https://securepayments.loanpro.io/api/customers
This request creates a customer.
General
Customers represent your borrowers. Here's what you need to know about this request:
- Customer information is stored within the
Customers
entity. - When a customer is created within Secure Payments, the information is not sent to the Loan Management System. The customer will exist solely within Secure Payments.
- Once a customer has been created, Payment Profile information can be linked to the customer via separate requests:
For an example of how customers work within the UI, take a look at our Secure Payments – Customers article.
{
"customer": {
"first_name": "John",
"middle_name": "H.",
"last_name": "Doe",
"gender": "male",
"birthdate": "01/01/1970",
"ssn": "123456789",
"email": "[email protected]",
"generation_code": "none",
"driver_license": "190449280",
"primary-address": {
"address1": "1099 Hayes Street",
"city": "San Francisco",
"state": "CA",
"zipcode": "94117",
"country": "USA"
},
"mail-address": {
"address1": "13 Elm Street",
"city": "Baker",
"state": "NV",
"zipcode": "89311",
"country": "USA"
}
}
}
Try It Instructions
Our pages often provide sample payload information so that you can try requests yourself. This request is ready for you—expand the object by clicking the "+" symbol and hit the Try It button to send the request.
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.