Skip to main content
GET
Search organization people

Authorizations

Authorization
string
header
required

Short-lived bearer access token issued for a Living Security API access key. Send as Authorization: Bearer .

Headers

x-organization-id
string<uuid>
required

Organization context for multi-tenant operations

Query Parameters

Search term for text search across name and email fields

Example:

"john"

offset
number
default:0

Offset for pagination (number of records to skip)

Required range: x >= 0
cursor
string

Cursor for pagination (returned from previous response)

Example:

"eyJvZmZzZXQiOjUwfQ=="

limit
number
default:50

Maximum number of results to return per page

Required range: 1 <= x <= 100
firstName
string

Filter by first name (partial match, case-insensitive)

Example:

"John"

lastName
string

Filter by last name (partial match, case-insensitive)

Example:

"Doe"

email
string

Filter by email (partial match, case-insensitive)

Example:

"john@example.com"

personId
string

Filter by specific person ID (exact match)

Example:

"01234567-89ab-cdef-0123-456789abcdef"

active
boolean

Filter by active status

Example:

true

includeTotal
boolean

Include the exact count of all people matching the same filters. Defaults to false to avoid count-query overhead for autocomplete/search consumers.

Example:

true

roles
string[]

Filter by roles

createdAfter
string

Filter by created date (after this date)

Example:

"2025-01-01T00:00:00Z"

createdBefore
string

Filter by created date (before this date)

Example:

"2025-12-31T23:59:59Z"

sortBy
enum<string>
default:createdAt

Field to sort by

Available options:
name,
email,
createdAt,
status
Example:

"name"

sortDirection
enum<string>
default:DESC

Sort direction (ASC or DESC)

Available options:
ASC,
DESC
Example:

"ASC"

Response

People found successfully

people
object[]
required

List of people matching search criteria

pagination
object
required

Pagination metadata

totalCount
number | null

Exact count of all people matching the same filters. Present only when requested with includeTotal=true.

Example:

1234