put https://loanpro.simnang.com/api/public/api/1/odata.svc/Customers()
This request edits a phone number associated with a customer.
General
Customer phone numbers provide lenders a way to contact borrowers. Here's what you need to know about this request:
- The
Phones
object holds customer phone information, and it's nested within theCustomers
entity. - Multiple phone numbers can be associated with a single customer.
- Phone number carrier information can be verified via LoanPro's integration with SBT integration. This setting is configured within Connections—LoanPro's hub for services and integrations.
- The payload of this request requires the
__update
and__id
fields. Without them, 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 regarding customer and phone database tables, see the following articles:
- Database – Customer Phone Entity (customer_phone_entity)
- Database – Customer Main Table (customer_entity)
{
"Phones": {
"results": [
{
"phone": "8662506066",
"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 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.