Egress proxy profiles

Create an org egress proxy profile

POST
/v1/orgs/{org}/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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

default*boolean

Make this the project's default profile (project scope only)

name*string
Match^[a-z0-9][a-z0-9_-]*$
Length1 <= length <= 128
scope*string
Value in"org" | "project"

Response Body

application/json

application/problem+json

curl -X POST "https://api-dev.tektona.ai/v1/orgs/string/egress-proxy-profiles" \  -H "Content-Type: application/json" \  -d '{    "default": true,    "name": "string",    "scope": "org"  }'
{  "$schema": "https://api-dev.tektona.ai/schemas/ProfileCreateBody.json",  "profile": {    "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"  }}