GET
/
borrowers
/
{borrower_id}
curl --request GET \
  --url https://production.pier-finance.com/api/borrowers/{borrower_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "address": {
    "line_1": "15 Main Street",
    "line_2": null,
    "city": "Austin",
    "state": "TX",
    "zip": "73301"
  },
  "id": "bor_a1d0c30d77104f35b4c842b99132624e",
  "date_of_birth": "1991-12-18",
  "email": "jdough@acme.co",
  "first_name": "Jane",
  "last_name": "Dough",
  "ssn": "999888777",
  "kyc_completion_date": "2022-11-15",
  "created_on": "2022-12-31T00:58:47.828Z",
  "phone": "2065886919"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

borrower_id
string
required

Response

200
application/json
address
object
required

The address of the borrower

date_of_birth
string
required

The borrower's date of birth (YYYY-MM-DD)

Example:

"1991-12-18"

id
string
required

The ID of the borrower

email
string
required

The borrower's valid email address

Example:

"jdough@acme.co"

first_name
string
required

The borrower's first name

Example:

"Jane"

last_name
string
required

The borrower's last name

Example:

"Dough"

kyc_completion_date
string
required

Date kyc completed on the borrower (YYYY-MM-DD)

Example:

"2022-11-15"

phone
string
required

The borrower's 10-digit US phone number (e.g. 4152775050)

Example:

"2065886919"

ssn
string
required

9-digit social security number of the borrower (e.g. 345543221)

Example:

"999888777"

created_on
string
required

The date the borrower was created

Example:

"2022-12-31T00:58:47.828Z"