---
title: "List Invites"
method: GET
path: "/organizations/invites"
tags: ["Organizations"]
---

# List Invites

`GET /organizations/invites`

Lists organization invites, filtered by status

## Query parameters

- `limit` integer
- `starting_after` string
- `ending_before` string
- `status` 'pending' | 'accepted' | 'revoked' | 'expired'

## Headers

- `Cartesia-Version` '2026-03-01', date, required

## Response `200`

List Invites

- object
  - `data` OrganizationInvite[], required — The requested page of results
    - `created_at` string, date-time, required — When the invite was created
    - `email` string, required — Email address the invite was sent to
    - `expires_at` string, date-time, nullable, required — When the invite expires, if it has an expiry
    - `id` string, required — Unique identifier for the invite
    - `role` 'admin' | 'member', required — Role the invited user will receive when they accept
    - `status` 'pending' | 'accepted' | 'revoked' | 'expired', required — Status of the invite
  - `has_more` boolean, required — Whether more results are available after this page
  - `next_page` string, nullable — An ID that can be passed as `starting_after` or `ending_before` to get the next page of data

## Other responses

- `400` — Invalid request
- `500` — Unexpected error

---

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