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.
1 parent 270fe89 commit 3aa1191Copy full SHA for 3aa1191
composer.json
@@ -12,7 +12,7 @@
12
}
13
],
14
"require": {
15
- "php": ">=5.6",
+ "php": ">=5.3.2",
16
"ext-json": "*",
17
"ext-curl": "*",
18
"psr/log": "^1.0"
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