Skip to main content
GET
/
v1
/
invites
curl --request GET \
  --url https://api.caret.so/v1/invites?limit=20&offset=0 \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "inv_123",
      "email": "[email protected]",
      "code": "abc123xy",
      "role": "member",
      "expiresAt": "2026-02-27T10:00:00Z",
      "createdAt": "2026-01-28T10:00:00Z",
      "isUrlInvite": false,
      "folders": [
        {
          "id": "fol_456",
          "name": "Marketing"
        }
      ]
    }
  ],
  "pagination": {
    "limit": 20,
    "offset": 0,
    "total": 1
  }
}

Query Parameters

limit
number
default:"20"
The number of items to return.
offset
number
default:"0"
The number of items to skip before starting to collect the result set.

Response

items
Invite[]
pagination
object
limit
number
The number of items returned.
offset
number
The number of items skipped.
total
number
The total number of items available.
curl --request GET \
  --url https://api.caret.so/v1/invites?limit=20&offset=0 \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "inv_123",
      "email": "[email protected]",
      "code": "abc123xy",
      "role": "member",
      "expiresAt": "2026-02-27T10:00:00Z",
      "createdAt": "2026-01-28T10:00:00Z",
      "isUrlInvite": false,
      "folders": [
        {
          "id": "fol_456",
          "name": "Marketing"
        }
      ]
    }
  ],
  "pagination": {
    "limit": 20,
    "offset": 0,
    "total": 1
  }
}