The ClearPolicy API exposes three endpoints for managing people — the contacts in your organization who receive attestation requests. All people endpoints are scoped to the organization your access token belongs to.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.
List people
Query parameters
Filter by the exact ULID of a person. When provided, returns a non-paginated collection containing only that person (or an empty array if not found).
Filter people whose name contains this value (case-insensitive partial match).
Filter people whose email contains this value (case-insensitive partial match).
Filter people whose phone number contains this value (partial match).
When set to
true or 1, returns only archived people. When omitted or false, returns only active people.Number of results per page. Must be between 1 and 100.
Page number to retrieve.
Example request
Example response
Create a person
201 Created status.
Body parameters
The full name of the person.
The email address of the person. Must be unique within your organization.
The phone number of the person. Must be in international format (e.g.
+12025550147).Example request
Example response
Get a person
404 is returned.
Path parameters
The ULID of the person to retrieve.
Example request
Example response
Person object
The ULID of the person.
The ULID of the organization the person belongs to.
The full name of the person.
The email address of the person.
The phone number in international format, or
null if not set.How the person was created. Possible values:
"oauth" (API), "web" (dashboard), "system" (automated process), or "planning_center" (Planning Center sync).An optional external identifier from the originating system, or
null.ISO 8601 timestamp of when the person was archived, or
null if active.ISO 8601 timestamp of when the person was created.
ISO 8601 timestamp of the last update.