GET
/
person
/
{id}
curl --request GET \
  --url https://api.treasuryprime.com/person/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "account_ids": [
    "acct_1029384756"
  ],
  "address": {
    "city": "San Francisco",
    "postal_code": "94104",
    "state": "CA",
    "street_line_1": "1 Market St",
    "street_line_2": "Suite 42"
  },
  "email": "george@gmail.com",
  "first_name": "George",
  "id": "owner_9876543210",
  "last_name": "Washington",
  "middle_name": null,
  "phone_number": "4154845555",
  "suffix": null,
  "tin_last4": "3192"
}

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

id
string
required

Unique identifier for object

Response

200 - application/json
The person

The response is of type object.