elaichi__invite__list
List organization invitations nobody has redeemed or withdrawn — hardcoded, so accepted and revoked invites are never returned and their absence means nothing. Each row carries a server-computed status: pending while its link still works, expired once it ran out of time. An expired one is listed on purpose — it is the invitation a person is still waiting on, and it can be revoked (invite.delete) or replaced with a fresh one (invite.create); only RESENDING the exact same invitation (same link, new expiry) is a human action in the Elaichi web app, with no AI-surface equivalent. Ids are inv_…, and they are what invite.delete takes. For people who already joined, use member.list. Returns { result: [...], nextCursor, prevCursor } — camelCase here, unlike the REST API’s next_cursor. Page by sending nextCursor back as cursor until it is null. Sensitive read: returns records an operator treats as confidential (audit history, credential metadata, offboarding detail). Read-only, but not harmless — do not echo the contents further than needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Rows per page, 1–200 (default 50). Larger values are clamped, not rejected. | |
| cursor | No | Opaque cursor taken verbatim from a previous call’s `nextCursor`. Omit for the first page. |