SandboxesSandbox tags

Replace sandbox tags

Replace all tags on a sandbox.

PUT
/v1/sandboxes/{id}/tags

Replace all tags on a sandbox.

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)

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

tags*array<string>|

Sandbox tags.

Itemsitems <= 20

Response Body

application/json

application/problem+json

curl -X PUT "https://example.com/v1/sandboxes/string/tags" \  -H "Content-Type: application/json" \  -d '{    "tags": [      "string"    ]  }'
{  "id": "string",  "tags": [    "string"  ]}