get_project
Retrieve detailed information about a specific Coolify project, including its environments and configuration data, using the project's unique identifier.
Instructions
Get details of a specific project including its environments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_uuid | Yes | UUID of the project to retrieve. Get this from list_projects. |
Input Schema (JSON Schema)
{
"properties": {
"project_uuid": {
"description": "UUID of the project to retrieve. Get this from list_projects.",
"examples": [
"sg4gsws44wksg040o4ok80ww"
],
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"project_uuid"
],
"type": "object"
}