for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the mucts.com.
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
* @version 1.0
* @author herry<[email protected]>
* @copyright © 2020 MuCTS.com All Rights Reserved.
*/
namespace MuCTS\Sobot\Agents;
use MuCTS\Sobot\Contracts\Sobot;
* Class QueryAgents
* 查询坐席列表
* 接口说明:
* 查询所属公司所有坐席信息
* @method QueryAgents pageNo(int $value) 起始页码, 不传或参数为错误值, 默认1
* @method QueryAgents pageSize(int $value) 每页条数, 不传或参数为错误值, 默认每页15条
* @package MuCTS\Sobot\Agents
class QueryAgents extends Sobot
{
public function getRequestMethod(): string
return self::METHOD_GET;
}
public function getRequestPath(): string
return '/api/basic/5/agent/query_agents';