Skip to main content

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 '{"ip_policy_ids":["ipp_2cSjysaXUWnjHxljSPRVn6iiXd9"],"type":"dashboard"}' \
https://api.ngrok.com/ip_restrictions

Parameters

NameTypeDescription
descriptionstringhuman-readable description of this IP restriction. optional, max 255 bytes.
metadatastringarbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes.
enforcedbooleantrue if the IP restriction will be enforced. if false, only warnings will be issued
typestringthe 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_idsList<string>the set of IP policy identifiers that are used to enforce the restriction

Response

Returns a 201 response on success

Example Response

{
"created_at": "2024-02-16T19:35:32Z",
"enforced": false,
"id": "ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE",
"ip_policies": [
{
"id": "ipp_2cSjysaXUWnjHxljSPRVn6iiXd9",
"uri": "https://api.ngrok.com/ip_policies/ipp_2cSjysaXUWnjHxljSPRVn6iiXd9"
}
],
"type": "dashboard",
"uri": "https://api.ngrok.com/ip_restrictions/ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE"
}

Fields

NameTypeDescription
idstringunique identifier for this IP restriction
uristringURI of the IP restriction API resource
created_atstringtimestamp when the IP restriction was created, RFC 3339 format
descriptionstringhuman-readable description of this IP restriction. optional, max 255 bytes.
metadatastringarbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes.
enforcedbooleantrue if the IP restriction will be enforced. if false, only warnings will be issued
typestringthe 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_policiesRefthe set of IP policies that are used to enforce the restriction

Ref fields

NameTypeDescription
idstringa resource identifier
uristringa 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_2cSjz6Rr7OKVCv7nuizl0OqfzeE

Response

Returns a 204 response with no body on success

Get IP Restriction

Get detailed information about an IP restriction

Request

GET /ip_restrictions/{id}

Example Request

curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/ip_restrictions/ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE

Response

Returns a 200 response on success

Example Response

{
"created_at": "2024-02-16T19:35:32Z",
"enforced": false,
"id": "ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE",
"ip_policies": [
{
"id": "ipp_2cSjysaXUWnjHxljSPRVn6iiXd9",
"uri": "https://api.ngrok.com/ip_policies/ipp_2cSjysaXUWnjHxljSPRVn6iiXd9"
},
{
"id": "ipp_2cSjyzIkRonXfKVW092795SvM8r",
"uri": "https://api.ngrok.com/ip_policies/ipp_2cSjyzIkRonXfKVW092795SvM8r"
}
],
"type": "dashboard",
"uri": "https://api.ngrok.com/ip_restrictions/ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE"
}

Fields

NameTypeDescription
idstringunique identifier for this IP restriction
uristringURI of the IP restriction API resource
created_atstringtimestamp when the IP restriction was created, RFC 3339 format
descriptionstringhuman-readable description of this IP restriction. optional, max 255 bytes.
metadatastringarbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes.
enforcedbooleantrue if the IP restriction will be enforced. if false, only warnings will be issued
typestringthe 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_policiesRefthe set of IP policies that are used to enforce the restriction

Ref fields

NameTypeDescription
idstringa resource identifier
uristringa uri for locating a resource

List IP Restrictions

List all IP restrictions on this account

Request

GET /ip_restrictions

Example Request

curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/ip_restrictions

Response

Returns a 200 response on success

Example Response

{
"ip_restrictions": [
{
"created_at": "2024-02-16T19:35:32Z",
"enforced": false,
"id": "ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE",
"ip_policies": [
{
"id": "ipp_2cSjysaXUWnjHxljSPRVn6iiXd9",
"uri": "https://api.ngrok.com/ip_policies/ipp_2cSjysaXUWnjHxljSPRVn6iiXd9"
}
],
"type": "dashboard",
"uri": "https://api.ngrok.com/ip_restrictions/ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE"
}
],
"next_page_uri": null,
"uri": "https://api.ngrok.com/ip_restrictions"
}

Fields

NameTypeDescription
ip_restrictionsIPRestrictionthe list of all IP restrictions on this account
uristringURI of the IP restrictions list API resource
next_page_uristringURI of the next page, or null if there is no next page

IPRestriction fields

NameTypeDescription
idstringunique identifier for this IP restriction
uristringURI of the IP restriction API resource
created_atstringtimestamp when the IP restriction was created, RFC 3339 format
descriptionstringhuman-readable description of this IP restriction. optional, max 255 bytes.
metadatastringarbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes.
enforcedbooleantrue if the IP restriction will be enforced. if false, only warnings will be issued
typestringthe 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_policiesRefthe set of IP policies that are used to enforce the restriction

Ref fields

NameTypeDescription
idstringa resource identifier
uristringa uri for locating a resource

Update IP Restriction

Update attributes of an IP restriction by ID

Request

PATCH /ip_restrictions/{id}

Example Request

curl \
-X PATCH \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"ip_policy_ids":["ipp_2cSjysaXUWnjHxljSPRVn6iiXd9","ipp_2cSjyzIkRonXfKVW092795SvM8r"]}' \
https://api.ngrok.com/ip_restrictions/ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE

Parameters

NameTypeDescription
idstring
descriptionstringhuman-readable description of this IP restriction. optional, max 255 bytes.
metadatastringarbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes.
enforcedbooleantrue if the IP restriction will be enforced. if false, only warnings will be issued
ip_policy_idsList<string>the set of IP policy identifiers that are used to enforce the restriction

Response

Returns a 200 response on success

Example Response

{
"created_at": "2024-02-16T19:35:32Z",
"enforced": false,
"id": "ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE",
"ip_policies": [
{
"id": "ipp_2cSjysaXUWnjHxljSPRVn6iiXd9",
"uri": "https://api.ngrok.com/ip_policies/ipp_2cSjysaXUWnjHxljSPRVn6iiXd9"
},
{
"id": "ipp_2cSjyzIkRonXfKVW092795SvM8r",
"uri": "https://api.ngrok.com/ip_policies/ipp_2cSjyzIkRonXfKVW092795SvM8r"
}
],
"type": "dashboard",
"uri": "https://api.ngrok.com/ip_restrictions/ipx_2cSjz6Rr7OKVCv7nuizl0OqfzeE"
}

Fields

NameTypeDescription
idstringunique identifier for this IP restriction
uristringURI of the IP restriction API resource
created_atstringtimestamp when the IP restriction was created, RFC 3339 format
descriptionstringhuman-readable description of this IP restriction. optional, max 255 bytes.
metadatastringarbitrary user-defined machine-readable data of this IP restriction. optional, max 4096 bytes.
enforcedbooleantrue if the IP restriction will be enforced. if false, only warnings will be issued
typestringthe 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_policiesRefthe set of IP policies that are used to enforce the restriction

Ref fields

NameTypeDescription
idstringa resource identifier
uristringa uri for locating a resource