IP查询
介绍
如果“isBuyAllowed”和“isSellAllowed”标志设置为 false,则意味着该 IP 地址所在国家/地区的用户不允许使用该服务。
接口说明
请求方式:GET
请求路径:/open/api/v4/merchant/ach/ip
请求参数
Header参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
appid | Y | string | 应用的唯一标识 |
timestamp | Y | string | 当前 UTC 13 位时间戳, 5 分钟内有效 |
sign | Y | string | 签名,签名方式可参考这里 |
URL参数:
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
ipAddress | Y | string | IP地址 |
示例
返回参数:
{
"success": true,
"returnCode": "0000",
"returnMsg": "SUCCESS",
"extend": "",
"data": {
"country": "SG",
"ipAddress": "180.178.73.50",
"buyAllowed": true,
"sellAllowed": true
},
"traceId": "64f1ca393edbe6119e9611f9123fa0ac"
}
Updated about 1 month ago