API Reference
- Introduction
- Authorization
- GETVersion
- GETHealthcheck
- GETEnable API
- GETDisable API
- Servers
- Teams
- Projects
- Private Keys
- Deployments
- Resources
- Applications
- Databases
- Services
Teams
List
Get all teams.
GET
/
teams
Copy
curl --request GET \
--url https://app.coolify.io/api/v1/teams \
--header 'Authorization: Bearer <token>'
Copy
[
{
"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
Go to Keys & Tokens
/ API tokens
and create a new token. Use the token as the bearer token.
Response
200
application/json
List of teams.
The response is of type object[]
.
Copy
curl --request GET \
--url https://app.coolify.io/api/v1/teams \
--header 'Authorization: Bearer <token>'
Copy
[
{
"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
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.