get_task_details
Retrieve detailed information about specific Octopus Deploy server tasks using their unique ID. Monitor deployment progress, health checks, and system maintenance operations to track task status and execution details.
Instructions
Get detailed information for a specific server task by its ID. Tasks represent background operations in Octopus Deploy, such as deployments, health checks, and system maintenance. Each task has a unique ID and can be monitored for status and progress.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
spaceName | Yes | ||
taskId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"spaceName": {
"type": "string"
},
"taskId": {
"type": "string"
}
},
"required": [
"spaceName",
"taskId"
],
"type": "object"
}