Sandboxes

Get a sandbox's effective egress injection

List the value-less effective egress injection rules for a sandbox (matched domains and the secret keys they inject; values are never returned).

GET
/v1/sandboxes/{id}/egress

List the value-less effective egress injection rules for a sandbox (matched domains and the secret keys they inject; values are never returned).

AuthorizationBearer <token>

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

In: header

Path Parameters

id*string

Sandbox ID (ULID)

Response Body

application/json

application/problem+json

curl -X GET "https://api-dev.tektona.ai/v1/sandboxes/string/egress"
{  "$schema": "https://api-dev.tektona.ai/schemas/GetSandboxEgressBody.json",  "items": [    {      "domain_pattern": "string",      "path_match": "string",      "secret_refs": [        "string"      ]    }  ]}