添加呼入路由
添加并设置呼入路由。
Endpoint
POST /api/v1.1.0/inroute/add?token={token}
请求参数
名称 | 是否必需 | 类型 | 描述 |
---|---|---|---|
name |
是 | String | 呼入路由的名称。 |
did |
否 | String | DID 匹配模式。 |
caller_id |
否 | String | 来电匹配模式。 |
trunks |
是 | String | 中继名称。 多个中继之间用 |
desttype |
是 | String | 目的地类型。
|
dest |
是 | String | 具体目的地。 |
实际示例
请求示例
POST /api/v1.1.0/inroute/add?token=277ac400357b509b4a587ff2157f7ad5 HTTP/1.1 Content-Type:application/json; charset=utf-8 Host: api.yeastarcloud.com { "name": "sipin", "did": "", "caller_id": "", "trunks": "siptrunk", "desttype": "extension", "dest": "1000" }
响应示例
HTTP/1.1 200 OK Access-control-allow-origin: * Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE { "status": "Success" }