IP Restrictions
Create IP Restriction
Create a new IP restriction
Request
POST /ip_restrictions
Example Request
curl \
-X POST \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"type":"dashboard","ip_policy_ids":["ipp_2bMmWevCfjIjS5dolQMi5IS7JFg"]}' \
https://api.ngrok.com/ip_restrictions
Parameters
Name | Type | Description |
---|---|---|
description | string | human-readable description of this IP restriction. optional, max 255 bytes. |
metadata | string | arbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes. |
enforced | boolean | true if the IP restriction will be enforced. if false, only warnings will be issued |
type | string | the type of IP restriction. this defines what traffic will be restricted with the attached policies. four values are currently supported: dashboard , api , agent , and endpoints |
ip_policy_ids | List<string> | the set of IP policy identifiers that are used to enforce the restriction |
Response
Returns a 201 response on success
Example Response
{
"id": "ipx_2bMmWc1wqpsOUVP4H6EgqdIA9oQ",
"uri": "https://api.ngrok.com/ip_restrictions/ipx_2bMmWc1wqpsOUVP4H6EgqdIA9oQ",
"created_at": "2024-01-23T18:09:14Z",
"enforced": false,
"type": "dashboard",
"ip_policies": [
{
"id": "ipp_2bMmWevCfjIjS5dolQMi5IS7JFg",
"uri": "https://api.ngrok.com/ip_policies/ipp_2bMmWevCfjIjS5dolQMi5IS7JFg"
}
]
}
Fields
Name | Type | Description |
---|---|---|
id | string | unique identifier for this IP restriction |
uri | string | URI of the IP restriction API resource |
created_at | string | timestamp when the IP restriction was created, RFC 3339 format |
description | string | human-readable description of this IP restriction. optional, max 255 bytes. |
metadata | string | arbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes. |
enforced | boolean | true if the IP restriction will be enforced. if false, only warnings will be issued |
type | string | the type of IP restriction. this defines what traffic will be restricted with the attached policies. four values are currently supported: dashboard , api , agent , and endpoints |
ip_policies | Ref | the set of IP policies that are used to enforce the restriction |
Ref fields
Name | Type | Description |
---|---|---|
id | string | a resource identifier |
uri | string | a uri for locating a resource |
Delete IP Restriction
Delete an IP restriction
Request
DELETE /ip_restrictions/{id}
Example Request
curl \
-X DELETE \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/ip_restrictions/ipx_2bMmWc1wqpsOUVP4H6EgqdIA9oQ
Response
Returns a 204 response with no body on success
Get IP Restriction
Get detailed information about an IP restriction