Edge Route IP Restriction Module
Replace HTTPS Edge Route IP Restriction Module
Request
PUT /edges/https/{edge_id}/routes/{id}/ip_restriction
Example Request
curl \
-XPUT \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"enabled":true,"ip_policy_ids":["ipp_2GjEzfdYuF1SYPFHA5RG28Huwry","ipp_2GjEzi03HwTW4YqsI09LuhbMlH8"]}' \
https://api.ngrok.com/edges/https/edghts_2GjEzdTsE0V1207U9Mvvi3jJs7Z/routes/edghtsrt_2GjEzjRYR3ypiJ1Qth1FumQjlqS/ip_restriction
Parameters
enabled | boolean | true if the module will be applied to traffic, false to disable. default true if unspecified |
ip_policy_ids | List<string> | list of all IP policies that will be used to check if a source IP is allowed access to the endpoint |
Response
Returns a 200 response on success
Example Response
{
"enabled": true,
"ip_policies": [
{
"id": "ipp_2GjEzfdYuF1SYPFHA5RG28Huwry",
"uri": "https://api.ngrok.com/ip_policies/ipp_2GjEzfdYuF1SYPFHA5RG28Huwry"
},
{
"id": "ipp_2GjEzi03HwTW4YqsI09LuhbMlH8",
"uri": "https://api.ngrok.com/ip_policies/ipp_2GjEzi03HwTW4YqsI09LuhbMlH8"
}
]
}
Fields
enabled | boolean | true if the module will be applied to traffic, false to disable. default true if unspecified |
ip_policies | Ref |
Ref fields
id | string | a resource identifier |
uri | string | a uri for locating a resource |
Get HTTPS Edge Route IP Restriction Module
Request
GET /edges/https/{edge_id}/routes/{id}/ip_restriction
Example Request
curl \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/edges/https/edghts_2GjEzdTsE0V1207U9Mvvi3jJs7Z/routes/edghtsrt_2GjEzjRYR3ypiJ1Qth1FumQjlqS/ip_restriction
Response
Returns a 200 response on success
Example Response
{
"enabled": true,
"ip_policies": [
{
"id": "ipp_2GjEzfdYuF1SYPFHA5RG28Huwry",
"uri": "https://api.ngrok.com/ip_policies/ipp_2GjEzfdYuF1SYPFHA5RG28Huwry"
},
{
"id": "ipp_2GjEzi03HwTW4YqsI09LuhbMlH8",
"uri": "https://api.ngrok.com/ip_policies/ipp_2GjEzi03HwTW4YqsI09LuhbMlH8"
}
]
}
Fields
enabled | boolean | true if the module will be applied to traffic, false to disable. default true if unspecified |
ip_policies | Ref |
Ref fields
id | string | a resource identifier |
uri | string | a uri for locating a resource |
Delete HTTPS Edge Route IP Restriction Module
Request
DELETE /edges/https/{edge_id}/routes/{id}/ip_restriction
Example Request
curl \
-XDELETE \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/edges/https/edghts_2GjEzdTsE0V1207U9Mvvi3jJs7Z/routes/edghtsrt_2GjEzjRYR3ypiJ1Qth1FumQjlqS/ip_restriction
Response
Returns a 204 response with no body on success