get https://app-api.geonode.com/api/configuration/active/whitelisted-ips
Returns a list of active whitelisted IPs.
Example Request:
curl -X GET "https://app-api.geonode.com/api/configuration/active/whitelisted-ips?page=1&perPage=10" \
--user "username:password"
Example Response (200 - Success):
{
"data": [
{
"ip": "161.142.148.141",
"description": "updated-description",
"_id": "67a0a5bbb412ddaf6f139b32"
}
]
}
Example Response (400 - Bad Request):
{
"error": "Invalid parameters provided."
}
Example Response (401 - Unauthorized):
{
"error": "Unauthorized - Invalid API key or credentials."
}