This request allows you to edit the phone numbers associated with a customer.
General
Customer phone numbers are an important piece of lending as they provide lenders a way to contact borrowers. Here's what you need to know about this request:
Phones
is a nested object within theCustomers
entity.- Multiple phone numbers can be associated with a single customer.
- Phone number carrier information can be verified via an SBT integration within Connections—LoanPro's hub for integrations.
- If you're going to build the payload for this request yourself, make sure you get the
**update
and**id
fields correct; otherwise, you may end up adding a phone number instead of editing one.
For an example of how customer phones work within the UI, take a look at our Customer Phones article.
Database
For information on Phones and Customer database tables, see the following articles:
- Database – Customer Phone Entity (customer_phone_entity)
- Database – Customer Main Table (customer_entity)
{
"Phones": {
"results": [
{
"phone": "6666666666",
"isPrimary": "0",
"isSecondary": "1",
"_index": 1,
"type": "customer.phoneType.home",
"__isDirty": true,
"carrierVerified": 1,
"__lookupInProgress": true,
"carrierName": null,
"isLandLine": 0,
"__update": true,
"__id:": 739
}
]
}
}
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—expand the
Phones
object by clicking the "+" icon and 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.