选择城市后,如果需要获取此城市的转移配置信息,调用此接口。
URI
/sbl/move/setting/v1 POST
参数
Integer city_code 城市代码 【不为空】
状态码
600 城市代码无效
响应字段
int city_code; // 城市ID或代码
int charge; // 服务费
boolean in; // 是否支持转入
boolean out; // 是否支持转出
响应数据示例
{
"data": {
"city_code": 1001,
"charge": 399,
"in": true,
"out": true
},
"msg": "",
"code": 200
}