# List company users

**GET** `/users`

## Parameters

### `limit` (_query_, optional)

Page size (max 100)

- **Type:** `integer`
- **Default:** `50`
- **Example:** `50`
- **Constraints:** >= 1, <= 100

### `offset` (_query_, optional)

Number of items to skip

- **Type:** `integer`
- **Nullable:** yes
- **Default:** `0`
- **Example:** `0`
- **Constraints:** >= 0

## Responses

### 200

Paginated users

**application/json**

_Schema ref:_ `#/components/schemas/ListUsersResponse` (ListUsersResponse)

```json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "company_id": {
            "type": "integer"
          },
          "email": {
            "type": "string",
            "nullable": true
          },
          "first_name": {
            "type": "string",
            "nullable": true
          },
          "last_name": {
            "type": "string",
            "nullable": true
          },
          "phone": {
            "type": "string",
            "nullable": true
          },
          "phone_country": {
            "type": "string",
            "nullable": true
          },
          "language": {
            "type": "string",
            "nullable": true
          },
          "position": {
            "type": "string",
            "nullable": true
          },
          "role": {
            "type": "string",
            "enum": [
              "EMPLOYEE",
              "ADMIN"
            ],
            "description": "EMPLOYEE: standard company user. ADMIN: can manage company configuration and users in Fleet. On create, defaults to EMPLOYEE when omitted.",
            "example": "EMPLOYEE"
          },
          "arrival_date": {
            "type": "string",
            "nullable": true
          },
          "departure_date": {
            "type": "string",
            "nullable": true
          },
          "date_of_birth": {
            "type": "string",
            "nullable": true
          },
          "city_of_birth": {
            "type": "string",
            "nullable": true
          },
          "country_of_birth": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id",
          "company_id",
          "email",
          "first_name",
          "last_name",
          "phone",
          "phone_country",
          "language",
          "position",
          "role",
          "arrival_date",
          "departure_date",
          "date_of_birth",
          "city_of_birth",
          "country_of_birth"
        ]
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "total": {
          "type": "integer",
          "description": "Total rows matching filters (before paging)",
          "example": 42
        },
        "limit": {
          "type": "integer",
          "description": "Requested page size after validation",
          "example": 50
        },
        "offset": {
          "type": "integer",
          "description": "Requested offset after validation",
          "example": 0
        }
      },
      "required": [
        "total",
        "limit",
        "offset"
      ]
    }
  },
  "required": [
    "data",
    "meta"
  ]
}
```

## Security

```json
[
  {
    "bearerAuth": []
  }
]
```

**bearerAuth:** Bearer token using a Fleet platform API key (flt_sk_…).

---

_Generated from the OpenAPI specification for raw Markdown / tooling use._
