Skip to main content
GET
/
v1
/
ip_allowlists
ShowIPAllowlist
curl --request GET \
  --url https://api.incident.io/v1/ip_allowlists \
  --header 'Authorization: Bearer <token>'
{
  "ip_allowlist": {
    "allowlist": [
      {
        "label": "London HQ",
        "value": "192.0.2.0"
      }
    ],
    "enabled": true,
    "updated_at": "2021-08-17T13:28:57.801578Z",
    "version": 1
  }
}

Authorizations

Authorization
string
header
required

API key from your incident.io dashboard (Settings → API keys)

Response

200 - application/json

OK response.

ip_allowlist
object
required
Example:
{
  "allowlist": [
    {
      "label": "London HQ",
      "value": "192.0.2.0"
    }
  ],
  "enabled": true,
  "updated_at": "2021-08-17T13:28:57.801578Z",
  "version": 1
}