> ## Documentation Index
> Fetch the complete documentation index at: https://api.docs.dealmachine.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Assignments

> List Driving assignments for your organization

List active or completed Driving assignments. Pass `assigned_to_user_id` to view one user's queue.

<ParamField query="page" type="number" default="1">
  Page number
</ParamField>

<ParamField query="per_page" type="number" default="25">
  Results per page (1-100)
</ParamField>

<ParamField query="status" type="string">
  Filter by `active` or `completed`
</ParamField>

<ParamField query="assigned_to_user_id" type="number">
  Filter to one assigned user
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.v2.dealmachine.com/v1/driving/assignments?status=active" \
    -H "Authorization: Bearer dm_sk_live_xxx"
  ```
</RequestExample>
