Egress network policies

List system egress network policies

List all built-in system egress network policies and the system deny list.

GET
/v1/system-egress-network-policies

List all built-in system egress network policies and the system deny list.

AuthorizationBearer <token>

API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.

In: header

Response Body

application/json

application/problem+json

curl -X GET "https://api-dev.tektona.ai/v1/system-egress-network-policies"
{  "$schema": "https://api-dev.tektona.ai/schemas/ListSystemBody.json",  "items": [    {      "$schema": "https://api-dev.tektona.ai/schemas/Policy.json",      "allowed_cidrs": [        "string"      ],      "allowed_domains": [        "string"      ],      "denied_cidrs": [        "string"      ],      "denied_domains": [        "string"      ],      "description": "string",      "display_name": "string",      "extends": "string",      "name": "string"    }  ],  "system_denies": {    "cidrs": [      "string"    ],    "ports": [      0    ]  }}