Dozor
Invites

List outstanding invites for the org

OWNER-only — invite lifecycle is governance. Past-TTL rows are filtered out lazily and flipped to `EXPIRED` in the background.

GET/api/organizations/{orgId}/invites

OWNER-only — invite lifecycle is governance. Past-TTL rows are filtered out lazily and flipped to EXPIRED in the background.

Path Parameters

orgId*string

Organisation id (cuid)

Response Body

application/json

curl -X GET "https://loading/api/organizations/string/invites"
[
  {
    "id": "inv_k4l5m6n7",
    "email": "teammate@your-company.com",
    "role": "ADMIN",
    "expiresAt": "2026-04-29T10:30:00.000Z",
    "createdAt": "2026-04-26T10:30:00.000Z",
    "invitedBy": {
      "name": "Sam Owner",
      "email": "sam@your-company.com"
    }
  },
  {
    "id": "inv_o8p9q0r1",
    "email": "intern@your-company.com",
    "role": "VIEWER",
    "expiresAt": "2026-04-28T15:12:00.000Z",
    "createdAt": "2026-04-25T15:12:00.000Z",
    "invitedBy": {
      "name": "Sam Owner",
      "email": "sam@your-company.com"
    }
  }
]
Empty
Empty