---
title: "Fetch a Person"
method: GET
path: "/person/{id}"
tags: ["Person"]
---

# Fetch a Person

`GET /person/{id}`

## Path parameters

- `id` string, required — Unique identifier for object

## Response `200`

The person

- object
  - `account_ids` string[] — Account IDs associated with the Person
  - `address` object — Address associated with the Person
    - `city` string — City
    - `country` string — Country (ISO 3166-1 alpha-2). Defaults to `US`
    - `postal_code` string — Postal code
    - `state` string — State
    - `street_line_1` string — First line of the address
    - `street_line_2` string — Optional second line of the address
  - `bankdata` object — Optional bank data associated with the person
  - `email` string — Email address
  - `first_name` string — Given name of person
  - `id` string — Unique identifier for object
  - `last_name` string — Family name of person
  - `mailing_address` object — The address where the person can receive mail. This is where physical cards will be sent when issued. If this field is `null`, `physical_address` will be used instead.
    - `city` string — City
    - `country` string — Country (ISO 3166-1 alpha-2). Defaults to `US`
    - `postal_code` string — Postal code
    - `state` string — State
    - `street_line_1` string — First line of the address
    - `street_line_2` string — Optional second line of the address
  - `middle_name` string — Middle name of person
  - `phone_number` string — The person's phone number. When necessary, this number will be used for calls or texts related to card activation.
  - `physical_address` object — The address of person's physical location
    - `city` string — City
    - `country` string — Country (ISO 3166-1 alpha-2). Defaults to `US`
    - `postal_code` string — Postal code
    - `state` string — State
    - `street_line_1` string — First line of the address
    - `street_line_2` string — Optional second line of the address
  - `suffix` string — The person's suffix (e.g. 'Jr.', 'Sr.', 'III'), if applicable
  - `tin_last4` string — Last 4 digits of the person's tax ID (SSN), if available
  - `userdata` object — Optional user data associated with the person

---

[API](https://skmtc.net/treasuryprime/apis/account.md) · [All operations](https://skmtc.net/treasuryprime/apis/account/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/treasuryprime/account/revisions/95a3c69c14e8/schema)
