GET
/
teams
/
current
/
members
curl --request GET \
  --url https://app.coolify.io/api/v1/teams/current/members \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "email": "<string>",
    "email_verified_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "two_factor_confirmed_at": "<string>",
    "force_password_reset": true,
    "marketing_emails": true
  }
]

Authorizations

Authorization
string
header
required

Go to Keys & Tokens / API tokens and create a new token. Use the token as the bearer token.

Response

200
application/json

Currently authenticated team members.

The response is of type object[].