This request allows you to add, edit, or delete a customer reference.
General
References can help lenders contact their borrowers and provide additional information during the underwriting process. Here's what you need to know about this request:
- The
References
object is nested within theCustomers
entity. Thus, this request is sent through theCustomers
endpoint as a PUT. - Each customer can have multiple references.
- A valid customer ID is required to update reference information. You can find a customer's ID by using a GET Customer Information request.
For an example of how reference information is saved within the UI, take a look at our Intro to References article.
Database
For information regarding reference database tables, see the following articles:
- Database – Customer Reference Entity (customer_reference_entity)
- Database – Customer Main Table (customer_entity)
{
"References": {
"results": [
{
"name": "Tim Whitaker",
"relation": "customerReference.Relation.father",
"primaryPhone": "8992163320",
"Address": {
"address1": "2600 Sheridan Road",
"city": "Evanston",
"state": "geo.state.IL",
"zipcode": "60602",
"country": "company.country.USA"
}
}
]
}
}
{
"References": {
"results": [
{
"name": "Tim Whitaker",
"relation": "customerReference.relation.brother",
"primaryPhone": "2024456655",
"Address": {
"country": "company.country.usa",
"address1": "2608 Sheridan Road",
"zipcode": "60201",
"city": "Evanston",
"state": "geo.state.IL",
"__update": true,
"__id": 3506
},
"__update": true,
"__id": 199
}
]
}
}
{
"References": {
"results": [
{
"__id": 199,
"__destroy": "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—expand the object by clicking the "+" symbol and hit Try It 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.