---
title: "Get a list of pending organization invitations"
method: GET
path: "/organizations/{organization_id}/invitations/pending"
tags: ["Organization Invitations"]
deprecated: true
---

# Get a list of pending organization invitations

`GET /organizations/{organization_id}/invitations/pending`

> **Deprecated.**

This request returns the list of organization invitations with "pending" status.
These are the organization invitations that can still be used to join the organization, but have not been accepted by the invited user yet.
Results can be paginated using the optional `limit` and `offset` query parameters.
The organization invitations are ordered by descending creation date.
Most recent invitations will be returned first.
Any invitations created as a result of an Organization Domain are not included in the results.

## Path parameters

- `organization_id` string, required

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

A list of organization invitations

- OrganizationInvitations
  - `data` OrganizationInvitation[], required
    - `object` 'organization_invitation', required — String representing the object's type. Objects of the same type share the same value.
    - `id` string, required
    - `email_address` string, required
    - `role` string, required
    - `role_name` string, required
    - `organization_id` string
    - `inviter_id` string, nullable, required
    - `public_inviter_data` OrganizationInvitationPublicUserData, nullable, required — An organization inviter's public user data
      - `user_id` string, required
      - `first_name` string, nullable, required
      - `last_name` string, nullable, required
      - `image_url` string, required
      - `has_image` boolean, required
      - `identifier` string, required
    - `status` string
    - `public_metadata` object, required
    - `private_metadata` object
    - `url` string, nullable, required
    - `expires_at` integer, nullable, required — Unix timestamp of expiration.
    - `created_at` integer, required — Unix timestamp of creation.
    - `updated_at` integer, required — Unix timestamp of last update.
  - `total_count` integer, required — Total number of organization invitations

## Other responses

- `400` — Request was not successful
- `404` — Resource not found

---

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