签入队列

将指定动态坐席签入指定队列。

请求地址

{base_url}/{api_path}/queue/add_dynamicagent?token={token}

请求参数

参数 是否必选 类型 描述
queuenumber Integer 队列号码。
extnumber Integer 动态坐席的号码。
password Integer 加入队列动态坐席的密码。

响应参数

参数 类型 描述
status String 请求结果。
  • Success:成功。
  • Failed:失败。

示例

请求示例

将坐席1000签入队列6700,队列密码为6700123。
POST /api/v2.0.0/queue/add_dynamicagent?token=1e3b3ebb6a974cb42ed31de5413df52d
Content-Type:application/json; charset=utf-8
Host: 192.168.5.150

{
	"queuenumber": "6700",
	"extnumber": "1000",
	"password": "6700123"
}
响应示例
HTTP/1.1 200 OK
Server: Boa/0.94.14rc21
Accept-Ranges: bytes
Connection: close
Content-Type: application/json
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE

{
    "status": "Success"
}