获取当前平台支持的可以预订通道
/api/backorder/channel
POST
| 字段 | 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|---|
| APPID | appid | String | 是 | API应用Id |
| 时间戳 | gntime | String | 是 | 当前UNIX时间戳 |
| 签名 | gntoken | String | 是 | 签名字符串,参考 签名算法 |
| 字段 | 参数 | 类型 | 说明 |
|---|---|---|---|
| 返回码 | code | Integer | 1:返回成功 -1:返回失败 |
| 返回说明 | msg | String | 返回请求操作的说明 |
| 返回数据 | data | Object | 返回请求操作结果数据 |
| 字段 | 参数 | 类型 | 说明 |
|---|---|---|---|
| 通道编号 | channel | Integer | |
| 通道名称 | channel_name | String | |
| 支持的后缀 | tlds | Array | 此通道支持的预订的后缀 |
| 预订价格 | price | Float | 使用此通道预订直接得标需要支付的价格 |
| 保证金 | deposit | Float | 使用此通道预订需要冻结的保证金 |
| 通道状态 | status | Integer | 1=正常,8=等待开放,9=即将开放 |
| 通道类型 | channel_type | Integer | 1=独占通道,0=非独占通道 |
| 可用时间 | available_time | String | 当status=8时,此时间用于提示通道可用的时间 |
{
"code": 1,
"msg": "OK",
"data": [
{
"channel": "1",
"channel_name": "1号通道",
"tlds": [
"com",
"net",
"org",
"cc",
"tv",
"cn",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "65.00",
"deposit": "8.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "10",
"channel_name": "10号通道",
"tlds": [
"com",
"net",
"org",
"cc",
"cn",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "43.00",
"deposit": "5.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "2",
"channel_name": "2号通道",
"tlds": [
"com",
"net",
"org",
"cc",
"cn",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "26.00",
"deposit": "3.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "3",
"channel_name": "3号通道",
"tlds": [
"com",
"net",
"org",
"cc",
"cn",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "16.00",
"deposit": "2.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "4",
"channel_name": "4号通道",
"tlds": [
"com",
"net",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "15.00",
"deposit": "2.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "5",
"channel_name": "5号通道",
"tlds": [
"com",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "13.00",
"deposit": "2.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "6",
"channel_name": "6号通道",
"tlds": [
"com",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "11.50",
"deposit": "1.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "8",
"channel_name": "8号通道",
"tlds": [
"com",
"top",
"vip",
"xyz",
"icu",
"cyou",
"bond"
],
"price": "9.50",
"deposit": "1.00",
"status": "1",
"channel_type": "0",
"available_time": ""
},
{
"channel": "9",
"channel_name": "9号通道",
"tlds": [
"top",
"vip",
"xyz"
],
"price": "6.00",
"deposit": "1.00",
"status": "1",
"channel_type": "0",
"available_time": ""
}
],
"requestid": "xxxxxx-xxxxxx-xxxx-xxxx"
}