anthropic.getSessionThread gets one Claude session execution thread.
Example
automations/anthropic-get-session-thread.automation.ts
Inputs
RequiressessionId and threadId. Inputs use public camelCase names and accept signals.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Gets one Claude session execution thread.
anthropic.getSessionThread gets one Claude session execution thread.
import { automation, onInvocation, withPrerequisites } from "automate.ax"
import { anthropic } from "automate.ax/anthropic"
export default automation("Get session thread", () => {
withPrerequisites(onInvocation(), () => {
anthropic.getSessionThread({
sessionId: "session-id",
threadId: "thread-id",
})
})
})
sessionId and threadId. Inputs use public camelCase names and accept signals.