get()
Retrieves a machine by its ID.
function get(machineId: string): Promise<Machine>- Name
machineId- Type
string- Description
The ID of the machine to retrieve.
const machineId = 'mch_123'
const response = await clerkClient.machines.get(machineId)Backend API (BAPI) endpoint
This method in the SDK is a wrapper around the BAPI endpoint GET/machines/{machine_id}. See the BAPI reference for more information.
Feedback
Last updated on