---
title: "Get workspace invites"
method: GET
path: "/api/v1/workspaces/invites"
tags: ["workspace", "invites"]
---

# Get workspace invites

`GET /api/v1/workspaces/invites`

Retrieve a paginated list of invites for the current workspace.

    This endpoint allows you to:
    - List all pending and active invites
    - Paginate through large invite lists

    **Use cases:**
    - Managing workspace invitations
    - Displaying invite status in UI
    - Auditing workspace access

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

This response returns a paginated list of workspace invites.

- object — This response returns a paginated list of workspace invites.
  - `limit` number, required — The maximum number of items to return.
  - `offset` number, required — The number of items to skip before starting to collect the result set.
  - `hasNextPage` boolean, required — Indicates if there are more pages available.
  - `data` object[], required
    - `id` string, required
    - `created` string, required
    - `type` 'link' | 'email', required
    - `status` 'pending' | 'redeemed' | 'rejected', required
    - `email` string, required
    - `role` 'member' | 'admin', required
    - `resolvedAt` string, required
    - `redeemedBy` string, required
    - `uses` number
    - `restrictedDomains` string[]

## Other responses

- `400` — This response indicates that the request was malformed or contained invalid parameters.
- `401` — This response indicates that the client must authenticate to access the requested resource.
- `403` — This response indicates that the client does not have permission to access the requested resource.

---

[API](https://skmtc.net/excalidraw/apis/excalidraw-api.md) · [All operations](https://skmtc.net/excalidraw/apis/excalidraw-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/excalidraw/excalidraw-api/revisions/c1404d1545ba/schema)
