coolify_update_application
Update application details including name and description in Coolify infrastructure management using the application UUID.
Instructions
Update application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Application description | |
name | No | Application name | |
uuid | Yes | Application UUID |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Application description",
"type": "string"
},
"name": {
"description": "Application name",
"type": "string"
},
"uuid": {
"description": "Application UUID",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}