td_get_attempt
Retrieve detailed execution information for a specific workflow attempt to investigate failures, check execution time, verify retry status, and access debugging parameters.
Instructions
Get workflow attempt details to investigate specific execution instance.
An attempt is one execution try of a scheduled session. Use when you have an
attempt ID from error logs or td_get_session and need execution details.
Common scenarios:
- Investigate why a workflow execution failed
- Check how long the execution took
- See if this was a retry after previous failure
- Get execution parameters for debugging
Returns attempt status, timing, retry info, and safe execution parameters.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attempt_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"attempt_id": {
"title": "Attempt Id",
"type": "string"
}
},
"required": [
"attempt_id"
],
"type": "object"
}