SandboxesSandbox tags

Add sandbox tags

Add tags to a sandbox without removing existing tags.

PUT
/v1/sandboxes/{id}/tags/add

Add tags to a sandbox without removing existing tags.

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/add" \  -H "Content-Type: application/json" \  -d '{    "tags": [      "string"    ]  }'
{  "id": "string",  "tags": [    "string"  ]}