Skip to main content
GET
/
team
Get user teams
curl --request GET \
  --url https://api.basic.tech/team/ \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "owner": "<string>",
      "roles": "<string>",
      "role_name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Response

200 - application/json

List of user teams

List of user teams

data
object[]