GET/v1/tenant_members

tenant_members.list

Returns a paginated list of active members in the caller's tenant. **Manager-only**: tokens whose owning user lacks owner/admin role (in strict-permission tenants) receive 403. The resource `id` encodes the member's `user_id` (the table's composite-unique address) — use it for subsequent PATCH/DELETE; the raw `user_id` is also surfaced on the response for SSO correlation.

Parameters

NameTypeRequiredDescription
cursorstringoptionalOpaque pagination cursor returned in `next_cursor` of the previous response.
limitintegeroptionalPage size, 1..100, default 50.

Response

NameTypeRequiredDescription
objectstringrequired
Enum: list
dataarray of TenantMemberrequired
has_morebooleanrequired
next_cursorstringnullrequiredOpaque pagination cursor returned in the previous list response.

Examples

curl -sS -X GET \
  -H "Authorization: Bearer $CULPRIT_API_TOKEN" \
  https://api.theculprit.ai/v1/tenant_members

Try it

Stored locally in your browser at localStorage.docs.tryit.token. Never sent to Culprit's analytics. Use a read-only token.