We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83ba81e + e97268d commit 924995dCopy full SHA for 924995d
src/classes/crm/status/status.php
@@ -230,13 +230,14 @@ public function get($id)
230
* @throws \Bitrix24\Exceptions\Bitrix24EmptyResponseException
231
* @throws \Bitrix24\Exceptions\Bitrix24ApiException
232
*/
233
- public function getList($order, $filter)
+ public function getList($order, $filter, $offset = 0)
234
{
235
$fullResult = $this->client->call(
236
'crm.status.list',
237
[
238
'order' => $order,
239
- 'filter' => $filter
+ 'filter' => $filter,
240
+ 'start' => $offset
241
]
242
);
243
return $fullResult;
0 commit comments