action rudder_get_allowed_networks { label: "Get allowed networks for a policy server" description: "Get the list of allowed networks for a policy server" provider: rudder method: GET path: "/settings/allowed_networks/{nodeId}" encoding: json output: { type: "object" required: ["action", "data", "id", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["getAllowedNetworks"] } data: { type: "object" description: "Information about the allowed_networks settings" required: ["settings"] properties: { settings: { type: "object" required: ["allowed_networks"] properties: { allowed_networks: { type: "array" description: "Array of allowed networks" items: { type: "object" } } } } } } id: { type: "string" description: "Target policy server ID" } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }