cURL
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 } }
Returns all pending invitations for the team. Requires owner or admin role.
Auth0 JWT access token
Team ID
^\d+$
"1"
Number of results to return (1-2000, default 25)
"25"
"0"
List of pending invitations
Show child attributes