国家列表(USER_DATA)
接口描述
查询旅行规则问卷使用的活跃国家列表。目前仅支持澳大利亚站。
HTTP请求
GET /sapi/v1/localentity/country/list
请求权重(IP)
1
请求参数
| 名称 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
| timestamp | LONG | YES |
响应示例
{
"countries": [
{
"countryCode": "au",
"countryName": "Australia",
"blockType": "supported",
"depositAllowed": true,
"withdrawalAllowed": true,
"hasRegionRestrictions": false
}
],
"lastUpdated": 1716300000000
}
响应字段
| 名称 | 类型 | 描述 |
|---|---|---|
| countries | ARRAY | 活跃国家列表 |
| countries[].countryCode | STRING | ISO 2位国家代码,小写 |
| countries[].countryName | STRING | 国家显示名称 |
| countries[].blockType | STRING | supported、limited 或 blocked |
| countries[].depositAllowed | BOOLEAN | 该国家是否允许充值 |
| countries[].withdrawalAllowed | BOOLEAN | 该国家是否允许提现 |
| countries[].hasRegionRestrictions | BOOLEAN | 该国家是否存在地区级别的限制 |
| lastUpdated | LONG | 数据最后更新时间戳(毫秒级 epoch);为空时返回 0 |