curl "http://127.0.0.1:22999/api/refresh_ips" -H "Content-Type: application/json" -d '{"zone":"ZONE","ips":["10.0.0.1"]}'
{
  "ips": [
	{
	  "ip":"10.0.0.1",
	  "maxmind":"us"
	},
	{
	  "ip":"20.0.0.1",
	  "maxmind":"us"
	}
  ]
}

API 端点: POST /api/refresh_IP

POST body

zone
string

区域名称

IP
array

Static IPs. e.g. IP=["ip1","ip2"]

VIP
array

gIPs. e.g. VIP=["gip1","gip2"] [数组]

{
  "ips": [
	{
	  "ip":"10.0.0.1",
	  "maxmind":"us"
	},
	{
	  "ip":"20.0.0.1",
	  "maxmind":"us"
	}
  ]
}
curl "http://127.0.0.1:22999/api/refresh_ips" -H "Content-Type: application/json" -d '{"zone":"ZONE","ips":["10.0.0.1"]}'