Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/vnd.api+json
ip_ranges found
Retrieves the IP ranges for rootly.com services
curl --request GET \
--url https://api.rootly.com/v1/ip_ranges \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ip_ranges",
"type": "ip_ranges",
"attributes": {
"integrations_ipv4": [
"34.232.217.139",
"18.213.181.255"
],
"integrations_ipv6": [],
"webhooks_ipv4": [
"34.232.217.139",
"18.213.181.255"
],
"webhooks_ipv6": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ip_ranges found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/ip_ranges \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ip_ranges",
"type": "ip_ranges",
"attributes": {
"integrations_ipv4": [
"34.232.217.139",
"18.213.181.255"
],
"integrations_ipv6": [],
"webhooks_ipv4": [
"34.232.217.139",
"18.213.181.255"
],
"webhooks_ipv6": []
}
}
}