Borrowers

List all borrowers

GET
Retrieve all borrowers associated with your account

Response

This endpoint returns a list of unions
Business
OR
Consumer

Errors

GET
1curl https://production.pier-finance.com/api/borrowers \
2 -H "Authorization: Bearer <token>"
1[
2 {
3 "type": "business",
4 "address": {
5 "line_1": "15 Market St",
6 "city": "San Francisco",
7 "state": "NJ",
8 "zip": "94133",
9 "line_2": null
10 },
11 "beneficial_owners": [
12 {
13 "address": {
14 "line_1": "15 Market St",
15 "city": "San Francisco",
16 "state": "CA",
17 "zip": "91133",
18 "line_2": null
19 },
20 "date_of_birth": "1991-12-18",
21 "email": "jdoe@acme.com",
22 "first_name": "Jane",
23 "government_identifiers": {
24 "ssn": "123456789"
25 },
26 "id": "63ae91f8eae458cb0d79f77e",
27 "last_name": "Dough",
28 "percent_ownership": 2500,
29 "phone": "4155555555"
30 }
31 ],
32 "business_contact": {
33 "first_name": "alex",
34 "last_name": "montana",
35 "phone": "4155555555",
36 "email": "alex@acme.co",
37 "title": "COO"
38 },
39 "business_name": "Apple Landscaping",
40 "business_type": "corporation",
41 "created_on": "2022-12-30T07:23:36.665Z",
42 "dba_name": "Apple Landscaping",
43 "ein": "130256721",
44 "id": "bor_18e5a3726b3943cda2635f40e1041ba4",
45 "incorporation_date": "2000-12-12",
46 "kyb_completion_date": "2022-11-15",
47 "phone": "4152556465",
48 "state_of_incorporation": "DE"
49 },
50 {
51 "type": "consumer",
52 "address": {
53 "line_1": "15 Main Street",
54 "city": "Austin",
55 "state": "TX",
56 "zip": "73301",
57 "line_2": "Unit 204"
58 },
59 "created_on": "2022-12-30T07:23:36.665Z",
60 "date_of_birth": "1991-12-18",
61 "email": "jdough@acme.co",
62 "first_name": "Jane",
63 "government_identifiers": {
64 "ssn": "999888777"
65 },
66 "id": "bor_a1d0c30d77104f35b4c842b99132624e",
67 "kyc_completion_date": "2022-11-15",
68 "last_name": "Dough"
69 }
70]