* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace EasyWeChat\Work\Department; use EasyWeChat\Kernel\BaseClient; /** * This is WeWork Department Client. * * @author mingyoung */ class Client extends BaseClient { /** * Create a department. * * @return mixed * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function create(array $data) { return $this->httpPostJson('cgi-bin/department/create', $data); } /** * Update a department. * * @return mixed * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function update(int $id, array $data) { return $this->httpPostJson('cgi-bin/department/update', array_merge(compact('id'), $data)); } /** * Delete a department. * * @param int $id * * @return mixed * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException */ public function delete($id) { return $this->httpGet('cgi-bin/department/delete', compact('id')); } /** * Get department lists. * * @param int|null $id * * @return mixed * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException */ public function list($id = null) { return $this->httpGet('cgi-bin/department/list', compact('id')); } }