Get WAAS Network List
GET/api/v32.07/policies/firewall/app/network-list
x-prisma-cloud-target-env: {"permission":"policyWAAS"}
Retrieves a list of all WAAS network lists. Network lists are groups or related IPv4 addresses and CIDR blocks used in WAAS policy rules.
This endpoint is typically called as part of a process to programmatically update network lists based on new threat intelligence. For example: add, update, or delete IP addresses.
This endpoint maps to Defend > WAAS > Network lists in the Console UI.
cURL Request
Refer to the following example cURL command:
$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
'https://<CONSOLE>/api/v<VERSION>/policies/firewall/app/network-list'
A successful response returns the lists of IPv4 addresses/IP CIDR blocks for networks in WAAS.
Responses
- 200
- default
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
Unique ID.
Description of the network list.
Indicates whether the rule is currently disabled. Values: true (disabled) or false (enabled).
Specifies the date and time when the rule was last modified.
Name of the rule.
Describes any noteworthy points for a rule. You can include any text.
User who created or last modified the rule.
Previous name of the rule. Required for rule renaming.
List of the IPv4 addresses and IP CIDR blocks.
[
{
"_id": "string",
"description": "string",
"disabled": true,
"modified": "2024-07-29T15:51:28.071Z",
"name": "string",
"notes": "string",
"owner": "string",
"previousName": "string",
"subnets": [
"string"
]
}
]