---
title: "List invitations"
method: GET
path: "/organizations/{organization_id}/invitations"
tags: ["Organization Invitations"]
---

# List invitations

`GET /organizations/{organization_id}/invitations`

Lists the invitations for an organization, newest first. Results are paginated: `page` defaults to 1 and `limit` defaults to 10. `limit` is capped by the server's configured maximum page size, which defaults to 100; a larger value is silently reduced to the cap rather than rejected, and values below the minimum fall back to the defaults. The `pagination` object in the response always reports the values actually applied.

## Path parameters

- `organization_id` string, required

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

OK

- ListOrganizationInvitationsResponse
  - `data` GetOrganizationInvitationResponse[], required
    - `invitation` OrganizationInvitation, required
      - `created_at` string, date-time, required
      - `email` string, required
      - `expires_at` string, date-time, required
      - `id` string, required
      - `inviter_id` string, required
      - `organization_id` string, required
      - `role` string, required
      - `status` 'pending' | 'accepted' | 'rejected' | 'revoked' | 'expired', required — The type of the invitation status
    - `organization` OrganizationSummary, required
      - `id` string, required
      - `logo` string, nullable
      - `metadata` object, nullable
      - `name` string, required
      - `owner_id` string, required
      - `slug` string, required
  - `pagination` Pagination, required
    - `has_more` boolean, required
    - `limit` integer, required
    - `page` integer, required
    - `total` integer, required
    - `total_pages` integer, required

## Changes

- **2026-08-27** `1a139f96a670` — 2 breaking
  - for the `query` request parameter `limit`, default value `10` was added
  - for the `query` request parameter `page`, default value `1` was added
- **2026-08-24** `def468b0d6ea` — 1 breaking, 4 info
  - the response's body type/format changed from `null, array`/`` to `object`/`` for status `200`
  - added the new optional `query` request parameter `limit`
  - added the new optional `query` request parameter `page`
  - added the required property `data` to the response with the `200` status
  - …1 more
- **2026-07-26** `ee28a7965ce5` — 8 breaking, 2 info
  - removed the required property `items/created_at` from the response with the `200` status
  - removed the required property `items/email` from the response with the `200` status
  - removed the required property `items/expires_at` from the response with the `200` status
  - removed the required property `items/id` from the response with the `200` status
  - …6 more
- **2026-07-24** `3f0abf6aab3c` — 2 info
  - api tag `Organization Invitations` added
  - api tag `Invitations` removed
- **2026-07-09** `dad8e2644615` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/authula/apis/authula-api/changes/organizations/:organization_id/invitations/get.md)

---

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