Skip to main content
GET
/
team
/
{team_id}
/
invite
Get team invites
curl --request GET \
  --url https://api.basic.tech/team/{team_id}/invite \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "team_id": "<string>",
      "email_or_username": "<string>",
      "roles": "<string>",
      "role_name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Path Parameters

team_id
string
required

The ID of the team to get invites for

Response

200 - application/json

List of pending invites

List of pending invites

data
object[]