servers
Manage Coolify deployments programmatically by performing operations like listing, creating, updating, and deleting servers, validating configurations, and handling resources or domains.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | JSON request body | |
id | No | Server 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": "Server UUID",
"type": "string"
},
"operation": {
"description": "Operation to perform",
"enum": [
"list",
"get",
"create",
"update",
"delete",
"validate",
"resources",
"domains"
],
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}