clerk.list_machines
List machines in a connected Clerk instance.
Call clerk.get_connected_accounts first. Pass clerk_instance_id to target a specific connection, or omit it to use the default account.
Returns machine summaries plus total_count.
Cost = 5 tokens.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (1–500). | |
| query | No | Filter by machine id (exact) or name (partial match). | |
| offset | No | Number of results to skip before returning. | |
| order_by | No | Sort by name or created_at; prefix with - for descending (default -created_at). | |
| clerk_instance_id | No | Clerk instance id (ins_...) from clerk.get_connected_accounts. Omit to use the default connected account. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| machines | No | Machines for the requested page. | |
| total_count | No | Total number of machines in the instance. |