Skip to main content
GET
/
api
/
teams
/
{id}
/
invitations
List pending invitations
curl --request GET \
  --url https://api.example.com/api/teams/{id}/invitations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "team_id": 123,
      "invited_email": "<string>",
      "invited_user_id": "<string>",
      "invited_by": "<string>",
      "role": "<string>",
      "status": "<string>",
      "token": "<string>",
      "created_at": "<string>",
      "expires_at": "<string>"
    }
  ],
  "page": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

id
string
required

Team ID

Pattern: ^\d+$
Example:

"1"

Query Parameters

limit
string

Number of results to return (1-2000, default 25)

Example:

"25"

offset
string
Example:

"0"

Response

200 - application/json

List of pending invitations

data
object[]
required
page
object
required