Skip to main content
GET
/
persons
/
{person_id}
Get a person
curl --request GET \
  --url https://api.sandbox.monite.com/v1/persons/{person_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-monite-entity-id: <x-monite-entity-id>' \
  --header 'x-monite-version: <x-monite-version>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "email": "jsmith@example.com",
  "entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "first_name": "<string>",
  "last_name": "<string>",
  "relationship": {
    "director": false,
    "executive": false,
    "owner": false,
    "percent_ownership": 50,
    "representative": false,
    "title": "<string>"
  },
  "address": {
    "city": "<string>",
    "country": "<string>",
    "line1": "<string>",
    "postal_code": "<string>",
    "line2": "<string>",
    "state": "<string>"
  },
  "date_of_birth": "2023-12-25",
  "id_number": "<string>",
  "phone": "<string>",
  "ssn_last_4": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-monite-version
string<date>
required
x-monite-entity-id
string<uuid>
required

The ID of the entity that owns the requested resource.

Example:

"9d2b4c8f-2087-4738-ba91-7359683c49a4"

Path Parameters

person_id
string<uuid>
required

Response

Successful Response

id
string<uuid>
required

The person's unique identifier

created_at
string<date-time>
required

Time at which the person was created

updated_at
string<date-time>
required

Time at which the person was updated

email
string<email>
required

The person's email address

entity_id
string<uuid>
required

Entity ID

first_name
string
required

The person's first name

last_name
string
required

The person's last name

relationship
object
required

Describes the person's relationship to the entity

address
object

The person's address

date_of_birth
string<date> | null

The person's date of birth

id_number
string | null

The person's ID number, as appropriate for their country

phone
string | null

The person's phone number

ssn_last_4
string | null

The last four digits of the person's Social Security number