---
title: "List invitations"
method: GET
path: "/v1/invitations"
tags: ["User management"]
---

# List invitations

`GET /v1/invitations`

This API returns a paginated list of pending invitations for your organization. Use this endpoint to review outstanding invitations before sending reminders or re-inviting users whose invitations have expired.

## Query parameters

- `offset` integer
- `limit` integer

## Response `200`

Invitations retrieved successfully

- SuccessListInvitationsSchema — Schema for the successful response of listing invitations.
  - `invitations` object[] — Pending invitations on the current page.
    - `email` string, email — Email address of the invited user whose invitation is pending.
    - `first_name` string, nullable — First name of the invited user.
    - `last_name` string, nullable — Last name of the invited user.
    - `is_manager` boolean — Indicates whether the invited user was granted manager permissions.
    - `invited_by_account_pk` integer, nullable — A unique identifier of the user who sent the invitation.
    - `created_at` string, date-time — Timestamp indicating when the invitation was created.
    - `expires_at` string, date-time — Timestamp indicating when the invitation expires.
  - `total` integer — Total number of pending invitations in your organization.
  - `offset` integer — The number of records skipped for this page. Reflects the offset value submitted in the request.
  - `limit` integer — The maximum number of records returned for this page. Reflects the limit value submitted in the request.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `412` — Precondition failed
- `500` — Internal server error

---

[API](https://skmtc.net/ocrolus/apis/user-management.md) · [All operations](https://skmtc.net/ocrolus/apis/user-management/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ocrolus/user-management/versions/3571ef602d13/schema)
