> 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):`** SDK 现在支持 `bodyProperties` 和 `queryParameters` 请求选项，可用于向请求添加任意属性。这对于与 alpha 或未记录的功能交互很有用。

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

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