clerk.list_invitations
List application invitations in a connected Clerk instance.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns invitation id, email_address, status, created_at, and revoked for each invitation, plus total_count.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of invitations to return (1–500). | |
| offset | No | Number of invitations to skip before returning results. | |
| status | No | Optional status filter: "pending", "accepted", "revoked", or "expired". | |
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| invitations | No | Invitations returned for the requested page. | |
| total_count | No | Total number of invitations returned on this page. |