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

# List invites

`GET /organization/invites`

Returns a list of invites in the organization.

## Query parameters

- `limit` integer
- `after` string

## Response `200`

Invites listed successfully.

- InviteListResponse
  - `object` 'list', required — The object type, which is always `list`
  - `data` Invite[], required
    - `object` 'organization.invite', required — The object type, which is always `organization.invite`
    - `id` string, required — The identifier, which can be referenced in API endpoints
    - `email` string, required — The email address of the individual to whom the invite was sent
    - `role` 'owner' | 'reader', required — `owner` or `reader`
    - `status` 'accepted' | 'expired' | 'pending', required — `accepted`,`expired`, or `pending`
    - `created_at` integer, required — The Unix timestamp (in seconds) of when the invite was sent.
    - `expires_at` integer, nullable — The Unix timestamp (in seconds) of when the invite expires.
    - `accepted_at` integer, nullable — The Unix timestamp (in seconds) of when the invite was accepted.
    - `projects` object[], required — The projects that were granted membership upon acceptance of the invite.
      - `id` string, required — Project's public ID
      - `role` 'member' | 'owner', required — Project membership role
  - `first_id` string, nullable — The first `invite_id` in the retrieved `list`
  - `last_id` string, nullable — The last `invite_id` in the retrieved `list`
  - `has_more` boolean, required — The `has_more` property is used for pagination to indicate there are additional results.

## Changes

- **2026-05-01** `918e83711c91` — 3 breaking, 4 info
  - the response property `data/items/expires_at` became optional for the status `200`
  - response property `first_id` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - response property `last_id` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - the response property `data/items/projects` became required for the status `200`
  - …3 more
- **2026-05-01** `72f65c459c35` — 3 breaking, 1 info
  - response property `data/items/accepted_at` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - response property `data/items/expires_at` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - removed the required property `data/items/invited_at` from the response with the `200` status
  - added the required property `data/items/created_at` to the response with the `200` status
- **2026-04-28** `fa32d6e7d961` — 1 info
  - the endpoint scheme security `AdminApiKeyAuth` was added to the API

[Change history](https://skmtc.dev/openai/apis/openai-api/changes/organization/invites/get.md)

---

[API](https://skmtc.dev/openai/apis/openai-api.md) · [All operations](https://skmtc.dev/openai/apis/openai-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openai/openai-api/revisions/dcd35773a322/schema)
