IP 접근 허용 체크
POST
http://{auth-domain}/v1.0/auth/ip/access/allow
Request Body
Name
Type
Description
ip*
string
아이피 주소
{
"return": 0,
"message": "success",
"value": {
"country": "KR",
"allow_access": false
}
}
curl --location --request POST 'https://{auth-domain}/v1.0/auth/ip/access/allow' \
--header 'Content-Type: application/json' \
--data-raw '{
"ip": "121.133.240.74"
}'
Last updated