API開發文檔

歡迎流覽我們的API開發文檔!

更新或創建隊列

PUT

/api/queue/:queue_id

權限:隊列

Header
字段類型描述
Content-Type字符串應用或JSON
參數
字段類型描述
queue_id字符串隊列唯一名
max_ring_time字符串對一個坐席振鈴多長時間後放棄,並對下一個開始振鈴
max_waiting_time字符串對一個呼叫的最長等待時間
strategy字符串對隊列中呼叫坐席的策略,取以下值中的一個:[“ring_all”, “longest_idle”, “round_robin”]
agents字符串隊列中的坐席名列表
Tab 1
/api/queue/queue1
 {
     "max_ring_time": 15,
     "max_waiting_time": 1800,
     "strategy": "longest_idle",
     "agents": [
         "agent1",
         "agent2",
         "agent3"
     ]
 }
成功
HTTP/1.1 200 OK
Queue has been updated.

标签:
Table of Contents