projects
Manage Coolify deployments by listing, creating, updating, deleting projects, and handling environments or resources via a structured API or CLI interface.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | JSON request body | |
environmentNameOrUuid | No | Environment name or UUID (for environment operation) | |
id | No | Project 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"
},
"environmentNameOrUuid": {
"description": "Environment name or UUID (for environment operation)",
"type": "string"
},
"id": {
"description": "Project UUID",
"type": "string"
},
"operation": {
"description": "Operation to perform",
"enum": [
"list",
"get",
"create",
"update",
"delete",
"environment",
"resources"
],
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}