linear.getUser returns a user profile.
automations/get-linear-user.automation.ts
UUID as userId. Optional second argument { account } defaults to the project binding. Returns Signal<LinearUser>.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get a Linear user by ID.
linear.getUser returns a user profile.
import { automation, onDashboardRun } from "automate.ax"
import { linear } from "automate.ax/linear"
export default automation("Get Linear user", () => {
onDashboardRun({ title: "Get Linear user" })
linear.getUser({ userId: "user-uuid" })
})
UUID as userId. Optional second argument { account } defaults to the project binding. Returns Signal<LinearUser>.