API开发文档
欢迎浏览我们的API开发文档!
进行呼叫
POST
要进行呼叫,向服务器发送HTTP请求
/api/calls
权限:call
Header | ||
字段 | 类型 | 描述 |
Content-Type | 字符串 | 应用或JSON |
参数 | ||
字段 | 类型 | 描述 |
type | 字符串 | “录音广播”或“坐席” |
from | 字符串 | 坐席账号编号 |
to | 字符串 | 呼叫目标,以国家区号开头 |
{
"type": "announcement",
"audio": "announcement.mp3",
"from": "16472345678",
"to": "16657489932"
}
{
"type": "agent",
"from": "agent1",
"to": "16657489932"
}
成功
HTTP/1.1 201 Created
{
"id": "c0e3dd4c-4a79-5a64-9da4-207835d11cec"
}
错误 4XX | |
名称 | 描述 |
AgentNotFound | 未找到该坐席 |
错误
HTTP/1.1 400 Bad Request
{
"error": "AgentNotFound"
}