Skip to main content
GET
/
people
/
{id}
Get a person
curl --request GET \
  --url https://api.clearpolicy.app/api/v1/people/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "organization_id": "<string>",
  "name": "<string>",
  "email": "jsmith@example.com",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "phone": "<string>",
  "source_id": "<string>",
  "archived_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.clearpolicy.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.0 bearer token obtained via the client credentials flow with the api:use scope.

Path Parameters

id
string
required

The ULID of the person.

Response

The requested person.

id
string
required

The ULID of the person.

organization_id
string
required

The ULID of the organization.

name
string
required

The full name of the person.

email
string<email>
required

The email address of the person.

source
enum<string>
required

How the person was created.

Available options:
oauth,
web,
system,
planning_center
created_at
string<date-time>
required

When the person was created.

updated_at
string<date-time>
required

When the person was last updated.

phone
string | null

The phone number in international format, or null.

source_id
string | null

An external identifier from the originating system, or null.

archived_at
string<date-time> | null

When the person was archived, or null if active.

Last modified on May 27, 2026