接口描述:调用本接口查询源站对应的域名基础信息
请求方式:get
请求路径:/domain/query-domain-info-by-origins
使用说明: 单个用户一分钟限制调用10000次,并发不超过100
请求参数说明:
参数名 | 类型 | 是否必填 | 名称 | 说明 |
---|---|---|---|---|
product_code | list< string> | 是 | 产品类型列表 | 支持:“001”(静态加速),“003”:(下载加速), “004”(视频点播加速),“008”(CDN加速),“014”(下载加速闲时) |
origins | string | 是 | 源站ip或域名 | 多个ip用英文逗号分隔 |
返回参数说明:
参数 | 类型 | 是否必传 | 名称及描述 |
---|---|---|---|
code | int | 是 | 状态码,成功100000 |
message | string | 是 | 描述信息,成功返回success,其他返回异常信息描述 |
result | list< object> | 否 | 返回结果列表 |
result[*].domain_id | int | 否 | 域名id |
result[*].area_scope | int | 否 | 加速范围,1(国内);2(海外);3(国内+海外) |
result[*].account_id | string | 否 | 客户唯一标识 |
result[*].record_status | string | 否 | 是否备案 |
result[*].domain | string | 否 | 域名 |
result[*].product_code | string | 否 | 产品类型,“001”(静态加速),“003”:(下载加速), “004”(视频点播加速),“008”(CDN加速),“014”(下载加速闲时) |
result[*].cname | string | 否 | cname |
result[*].billing_status | int | 否 | 域名的计费状态,1(计费域名); 2(非计费域名) |
result[*].record_num | string | 否 | 工信部ICP备案号 |
result[*].status | int | 否 | 域名状态,1(审核中);2(审核成功),3(配置中);4(已启用);5(停止中);6(已停止);7(删除中);8(已删除);9(审核失败);10(配置失败);11(停止失败);12(删除失败) |
示例:
请求路径:https://cdnapi-global.ctapi.ctyun.cn/domain/query-domain-info-by-origins
示例1:
请求:
https://cdnapi-global.ctapi.ctyun.cn/domain/query-domain-info-by-origins?product_code=[“001”,“003”]&origins=aaa.hb5oss.xstore.ctyun.cn,bbb.hb5oss.xstore.ctyun.cn
返回结果:
{
"code": 100000,
"message": "success",
"result": [
{
"domain_id": 22624,
"area_scope": 1,
"account_id": "111111",
"record_status": "true",
"domain": "xxxxx",
"product_code": "001",
"cname": "xxxxx.",
"billing_status": 1,
"record_num": 0,
"status": 4
},
{
"domain_id": 22625,
"area_scope": 1,
"account_id": "111111",
"record_status": "true",
"domain": "xxxxx",
"product_code": "001",
"cname": "xxxxx",
"billing_status": 1,
"record_num": 0,
"status": 4
}
]
}
错误码请参考:参数code和message含义