GET/v1/tenant_invitations
tenant_invitations.list
Returns a paginated list of pending (non-accepted, non-revoked) invitations in the caller's tenant. **Manager-only**: tokens whose owning user lacks owner/admin role (in strict-permission tenants) receive 403. The raw invite token is NEVER returned here — it only ever appears in the email body and the accept URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| cursor | string | optional | Opaque pagination cursor returned in `next_cursor` of the previous response. |
| limit | integer | optional | Page size, 1..100, default 50. |
Response
| Name | Type | Required | Description |
|---|---|---|---|
| object | string | required | Enum: list |
| data | array of TenantInvitation | required | |
| has_more | boolean | required | |
| next_cursor | stringnull | required | Opaque 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_invitationsTry it
Stored locally in your browser at localStorage.docs.tryit.token. Never sent to Culprit's analytics. Use a read-only token.