> ## 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 Workspace Invites

> List a workspace's live pending invites

Returns the workspace's **live** pending invites (`status = 'pending' AND expiresAt > now` — effectively-expired rows are excluded). Requires the `invite` capability (or owner).

## Path Parameters

<ParamField path="id" type="string" required>
  The workspace UUID.
</ParamField>

## Response

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

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

This is a workspace's **outbox**. For the invites addressed **to** a user, see [List My Invites](/api-reference/workspaces/invitations/list-my-invites).

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