> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## 0.11.0

**`(feat):`** The SDK now supports a `bodyProperties` and `queryParameters` request option, which can be used to add arbitrary properties to the request. This is useful for interacting with alpha or undocumented functionality.

**`$response = $client->users->list(`**

````php $response = $client->users->list(
  new ListUsersRequest([
    ...
  ]),
  [
    'queryParameters' => [
      'limit' => 100,
    ],
  ]
); ```

````