简要描述:
请求URL:
https://api.chuangcache.com/domain/updateConfOrigin
请求方式:
请求参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 密钥 |
domain_id | 是 | string | 加速域名ID |
data | 是 | array | 回源地址(主),域名或ip:port |
backup | 否 | array | 回源地址(备),格式同data |
source_type | 否 | string | 回源协议[http、https、protocol_follow(协议跟随)] |
sourcehost | 否 | string | 回源HOST |
请求示例
curl -i -X POST https://api.chuangcache.com/domain/updateConfOrigin
-H "Accept: application/json"
-H "Content-Type: application/json; charset=utf-8"
-d '{"access_token": "ACCESS_TOKEN", "domain_id": 2, "data":["1.1.1.1"],"sourcehost":"a.com"}'
响应示例
{
"status": 1,
"info": "success",
"data": true
}
返回参数说明
参数名 | 类型 | 说明 |
---|---|---|
status | int | 接口返回码 |
info | string | 接口返回信息 |
data | boolean | 接口返回数据,true成功 false失败 |