Phil
2 months agoComet
Pull network rules via API
Hi community, I am trying to pull network settings for several sites.
To be more precise, I would like to create a list of bypass rules per site.
I tried the following query with empty results:
query entityLookup ($accountID: ID!, $type: EntityType!, $parent: EntityInput!) {
entityLookup (accountID: $accountID, type: $type, parent: $parent) {
items {
entity {
id
name
type
}
description
helperFields
}
}
}
{
"accountID": "{{accountID}}",
"type": "localRouting",
"parent": {
"id": 0,
"type": "site"
}
}
Other "type" like lanFirewall worked. Any suggestions how to proceed and get details about bypass ruleset per site?