get_deployment
Retrieve detailed information about a specific deployment to monitor its status and troubleshoot issues using the deployment UUID.
Instructions
Get detailed information about a specific deployment. Use this to monitor deployment status and troubleshoot issues.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uuid | Yes | UUID of the deployment to retrieve. Obtain this from list_deployments or from deployment event responses. |
Input Schema (JSON Schema)
{
"properties": {
"uuid": {
"description": "UUID of the deployment to retrieve. Obtain this from list_deployments or from deployment event responses.",
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}