Skip to main content
GET
/
v1
/
models
/
invitation
List invitation
curl --request GET \
  --url https://api.abloatai.com/v1/models/invitation \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "model": "<string>",
  "data": [
    {
      "email": "<string>",
      "inviterId": "<string>",
      "role": "<string>",
      "status": "pending",
      "expiresAt": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "metadata": "<string>",
      "teamId": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>",
  "stamp": 123
}

Authorizations

Authorization
string
header
required

API key (sk_live_…) or a scoped capability token. The same header carries both — the server discriminates by token shape.

Query Parameters

limit
integer
default:20

Page size (default 20, max 100).

Required range: 1 <= x <= 100
order
enum<string>

Sort direction (default asc).

Available options:
asc,
desc
order_by
string

Column to order by (default "id").

starting_after
string

Cursor from a prior page (next_cursor).

Response

200 - application/json

A page of invitation records.

object
string
Allowed value: "list"
model
string
Allowed value: "invitation"
data
object[]
has_more
boolean
next_cursor
string | null
stamp
integer