td_get_session
Retrieve workflow session execution details by ID to verify status, schedule timing, and obtain attempt information for investigation.
Instructions
Get workflow session details by ID to check execution status and timing.
A session is a scheduled workflow run. Use when you have a session ID and need
to check if it ran successfully, when it was scheduled, or get attempt details.
Common scenarios:
- Verify if a scheduled workflow executed at the expected time
- Get the attempt ID to investigate execution details
- Check overall success/failure status
Returns session info with workflow name, schedule time, and latest attempt status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}