Egress network policies

List project egress network policies

List all custom egress network policies scoped to a project. Requires project read access.

GET
/v1/orgs/{org}/projects/{project}/egress-network-policies

List all custom egress network policies scoped to a project. Requires project read access.

AuthorizationBearer <token>

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

In: header

Path Parameters

org*string

Organization name

project*string

Project name

Response Body

application/json

application/problem+json

curl -X GET "https://api-dev.tektona.ai/v1/orgs/string/projects/string/egress-network-policies"
{  "$schema": "https://api-dev.tektona.ai/schemas/ListPoliciesBody.json",  "items": [    {      "$schema": "https://api-dev.tektona.ai/schemas/PolicyResponse.json",      "allowed_cidrs": [        "string"      ],      "allowed_domains": [        "string"      ],      "denied_cidrs": [        "string"      ],      "denied_domains": [        "string"      ],      "description": "string",      "display_name": "string",      "display_reference": "string",      "extends": "string",      "name": "string",      "reference": "string"    }  ]}