linear.getDocument gets one Linear document..
automations/linear-get-document.automation.ts
documentId. Returns the matching LinearDocument. Optional second argument { account } selects the Linear binding.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get one Linear document.
linear.getDocument gets one Linear document..
import { automation, onDashboardRun } from "automate.ax"
import { linear } from "automate.ax/linear"
export default automation("Get document", () => {
onDashboardRun({ title: "Get document" })
linear.getDocument({ documentId: "document-uuid" })
})
documentId. Returns the matching LinearDocument. Optional second argument { account } selects the Linear binding.