databases
Manage and control database operations for Coolify deployments, including creating, updating, deleting, and monitoring databases like PostgreSQL, MySQL, Redis, and more via CLI or programmatic access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | JSON request body | |
id | No | Database UUID | |
operation | Yes | Operation to perform |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "JSON request body",
"type": "string"
},
"id": {
"description": "Database UUID",
"type": "string"
},
"operation": {
"description": "Operation to perform",
"enum": [
"list",
"get",
"update",
"delete",
"create_postgresql",
"create_clickhouse",
"create_dragonfly",
"create_redis",
"create_keydb",
"create_mariadb",
"create_mysql",
"create_mongodb",
"start",
"stop",
"restart"
],
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}