Configuration

Set lending details

POST
Only valid in Starter Mode

Request

This endpoint expects an object.
address
objectRequired
Your address as lender of record
cs_phone
stringRequired
Your customer service phone number
cs_email
stringRequired
Your customer service email

Response

This endpoint returns an object
address
object
Your address as lender of record
cs_phone
string
Your customer service phone number
cs_email
string
Your customer service email

Errors

POST
1curl -X POST https://production.pier-finance.com/api/configuration/lending_details \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "address": {
6 "line_1": "123 Main St",
7 "city": "San Francisco",
8 "state": "CA",
9 "zip": "94105",
10 "line_2": "Suite 100"
11 },
12 "cs_phone": "415-555-5555",
13 "cs_email": "support@example.com"
14}'
1{
2 "address": {
3 "line_1": "123 Main St",
4 "city": "San Francisco",
5 "state": "CA",
6 "zip": "94105",
7 "line_2": "Suite 100"
8 },
9 "cs_phone": "415-555-5555",
10 "cs_email": "support@example.com"
11}