get_task_by_id
Retrieve detailed information about a specific server task using its unique ID to monitor deployment progress, health checks, or system maintenance operations in Octopus Deploy.
Instructions
Get details 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"
}