Skip to main content
GET
/
teams
/
current
Authenticated Team
curl --request GET \
  --url https://app.coolify.io/api/v1/teams/current \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "personal_team": true,
  "created_at": "<string>",
  "updated_at": "<string>",
  "smtp_enabled": true,
  "smtp_from_address": "<string>",
  "smtp_from_name": "<string>",
  "smtp_recipients": "<string>",
  "smtp_host": "<string>",
  "smtp_port": "<string>",
  "smtp_encryption": "<string>",
  "smtp_username": "<string>",
  "smtp_password": "<string>",
  "smtp_timeout": "<string>",
  "smtp_notifications_test": true,
  "smtp_notifications_deployments": true,
  "smtp_notifications_status_changes": true,
  "smtp_notifications_scheduled_tasks": true,
  "smtp_notifications_database_backups": true,
  "discord_enabled": true,
  "discord_webhook_url": "<string>",
  "discord_notifications_test": true,
  "discord_notifications_deployments": true,
  "discord_notifications_status_changes": true,
  "discord_notifications_database_backups": true,
  "discord_notifications_scheduled_tasks": true,
  "show_boarding": true,
  "resend_enabled": true,
  "resend_api_key": "<string>",
  "use_instance_email_settings": true,
  "telegram_enabled": true,
  "telegram_token": "<string>",
  "telegram_chat_id": "<string>",
  "telegram_notifications_test": true,
  "telegram_notifications_deployments": true,
  "telegram_notifications_status_changes": true,
  "telegram_notifications_database_backups": true,
  "telegram_notifications_test_message_thread_id": "<string>",
  "telegram_notifications_deployments_message_thread_id": "<string>",
  "telegram_notifications_status_changes_message_thread_id": "<string>",
  "telegram_notifications_database_backups_message_thread_id": "<string>",
  "custom_server_limit": "<string>",
  "telegram_notifications_scheduled_tasks": true,
  "telegram_notifications_scheduled_tasks_thread_id": "<string>",
  "members": [
    {
      "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

Current Team.

Team model

id
integer

The unique identifier of the team.

name
string

The name of the team.

description
string

The description of the team.

personal_team
boolean

Whether the team is personal or not.

created_at
string

The date and time the team was created.

updated_at
string

The date and time the team was last updated.

smtp_enabled
boolean

Whether SMTP is enabled or not.

smtp_from_address
string

The email address to send emails from.

smtp_from_name
string

The name to send emails from.

smtp_recipients
string

The email addresses to send emails to.

smtp_host
string

The SMTP host.

smtp_port
string

The SMTP port.

smtp_encryption
string

The SMTP encryption.

smtp_username
string

The SMTP username.

smtp_password
string

The SMTP password.

smtp_timeout
string

The SMTP timeout.

smtp_notifications_test
boolean

Whether to send test notifications via SMTP.

smtp_notifications_deployments
boolean

Whether to send deployment notifications via SMTP.

smtp_notifications_status_changes
boolean

Whether to send status change notifications via SMTP.

smtp_notifications_scheduled_tasks
boolean

Whether to send scheduled task notifications via SMTP.

smtp_notifications_database_backups
boolean

Whether to send database backup notifications via SMTP.

discord_enabled
boolean

Whether Discord is enabled or not.

discord_webhook_url
string

The Discord webhook URL.

discord_notifications_test
boolean

Whether to send test notifications via Discord.

discord_notifications_deployments
boolean

Whether to send deployment notifications via Discord.

discord_notifications_status_changes
boolean

Whether to send status change notifications via Discord.

discord_notifications_database_backups
boolean

Whether to send database backup notifications via Discord.

discord_notifications_scheduled_tasks
boolean

Whether to send scheduled task notifications via Discord.

show_boarding
boolean

Whether to show the boarding screen or not.

resend_enabled
boolean

Whether to enable resending or not.

resend_api_key
string

The resending API key.

use_instance_email_settings
boolean

Whether to use instance email settings or not.

telegram_enabled
boolean

Whether Telegram is enabled or not.

telegram_token
string

The Telegram token.

telegram_chat_id
string

The Telegram chat ID.

telegram_notifications_test
boolean

Whether to send test notifications via Telegram.

telegram_notifications_deployments
boolean

Whether to send deployment notifications via Telegram.

telegram_notifications_status_changes
boolean

Whether to send status change notifications via Telegram.

telegram_notifications_database_backups
boolean

Whether to send database backup notifications via Telegram.

telegram_notifications_test_message_thread_id
string

The Telegram test message thread ID.

telegram_notifications_deployments_message_thread_id
string

The Telegram deployment message thread ID.

telegram_notifications_status_changes_message_thread_id
string

The Telegram status change message thread ID.

telegram_notifications_database_backups_message_thread_id
string

The Telegram database backup message thread ID.

custom_server_limit
string

The custom server limit.

telegram_notifications_scheduled_tasks
boolean

Whether to send scheduled task notifications via Telegram.

telegram_notifications_scheduled_tasks_thread_id
string

The Telegram scheduled task message thread ID.

members
object[]

The members of the team.

I