> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sublay.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List My Invites

> The authenticated user's live pending invites

Returns the authenticated user's **live** pending invites (`status = 'pending' AND expiresAt > now`), matched by **`userId`** (no email-string matching at query time — invitations bind to `userId` at invite time or via the signup-attach step).

<Note>
  **Surfacing is NOT verification-gated** — a user sees pending invites right after signup (which nudges them to verify). The verified-email check applies when the user **acts** on an invite — [accept](/api-reference/workspaces/invitations/accept-invite) *and* [decline](/api-reference/workspaces/invitations/decline-invite).
</Note>

## Query Parameters

<ParamField query="userId" type="string">
  Service/master keys only — the user whose invites to read.
</ParamField>

## Response

```json theme={null}
{ "data": [ /* WorkspaceInvitation[] */ ] }
```

Each item is a [WorkspaceInvitation](/data-models/workspace-invitation) object.

See also: [useFetchMyWorkspaceInvites](/hooks/workspaces/use-fetch-my-workspace-invites)
