123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace crmeb\services\wechat\department;
- use EasyWeChat\Work\Department\Client as WorkClient;
- class Client extends WorkClient
- {
-
- public function getUserListIds(int $limit = 0, string $cursor = '')
- {
- $data = [];
- if ($limit) {
- $data['limit'] = $limit;
- }
- if ($cursor) {
- $data['cursor'] = $cursor;
- }
- return $this->httpPostJson('cgi-bin/user/list_id', $data);
- }
- }
|