---
title: "Retrieves an invite."
method: GET
path: "/organization/invites/{invite_id}"
tags: ["Invites"]
---

# Retrieves an invite.

`GET /organization/invites/{invite_id}`

## Path parameters

- `invite_id` string, required

## Response `200`

Invite retrieved successfully.

- Invite — Represents an individual `invite` to the organization.
  - `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.
  - `projects` object[] — The projects that were granted membership upon acceptance of the invite.
    - `id` string — Project's public ID
    - `role` 'member' | 'owner' — Project membership role

## Changes

- **2024-12-18** `d311deacd11a` — 1 info
  - added the optional property `projects` to the response with the `200` status
- **2024-08-23** `5856f8b0c850` — 2 breaking, 5 info
  - removed the required property `created_at` from the response with the `200` status
  - removed the required property `projects` from the response with the `200` status
  - the endpoint scheme security `AdminApiKeyAuth` was removed from the API
  - the response property `expires_at` became required for the status `200`
  - …3 more

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

---

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