---
title: "Returns a list of invites in the organization."
method: GET
path: "/organization/invites"
tags: ["Invites"]
---

# Returns a list of invites in the organization.

`GET /organization/invites`

## 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`
    - `invited_at` integer, required — The Unix timestamp (in seconds) of when the invite was sent.
    - `expires_at` integer, required — The Unix timestamp (in seconds) of when the invite expires.
    - `accepted_at` integer — The Unix timestamp (in seconds) of when the invite was accepted.
  - `first_id` string — The first `invite_id` in the retrieved `list`
  - `last_id` string — The last `invite_id` in the retrieved `list`
  - `has_more` boolean — The `has_more` property is used for pagination to indicate there are additional results.

---

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