Egress proxy profiles

List project egress proxy profiles

GET
/v1/orgs/{org}/projects/{project}/egress-proxy-profiles
AuthorizationBearer <token>

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

In: header

Path Parameters

org*string
project*string

Query Parameters

cursor?string

Opaque pagination cursor from a previous response

limit?integer

Maximum number of items to return (1–100)

Default20
Formatint32
Range1 <= value <= 100

Response Body

application/json

application/problem+json

curl -X GET "https://api-dev.tektona.ai/v1/orgs/string/projects/string/egress-proxy-profiles"
{  "$schema": "https://api-dev.tektona.ai/schemas/ProfileListBody.json",  "items": [    {      "id": "string",      "is_default": true,      "name": "string",      "rules": [        {          "domain_pattern": "string",          "id": "string",          "path_match": "string",          "recipe": [            {              "name": "string",              "target": "header",              "template": "string",              "username": "string"            }          ]        }      ],      "scope": "org"    }  ],  "pagination": {    "has_more": true,    "next_cursor": "string",    "total_count": 0  }}