Skip to main content
DELETE
/
v1
/
tag-values
/
{key}
Delete tag value
curl --request DELETE \
  --url https://api.skyvern.com/v1/tag-values/{key} \
  --header 'Content-Type: application/json' \
  --data '
{
  "value": "<string>"
}
'
{
  "key": "<string>",
  "value": "<string>",
  "removed_from_workflow_count": 123
}

Headers

x-api-key
string | null

Skyvern API key for authentication. API key can be found at https://app.skyvern.com/settings.

Path Parameters

key
string
required

Tag key (group)

Example:

"env"

Body

application/json

Body for DELETE /v1/tag-values/{key}. The value rides in the body, not the path, so values containing / stay addressable.

value
string
required

Tag value (label) under the key to soft-delete.

Response

Successfully deleted tag value

Response for DELETE /v1/tag-values/{key}.

key
string
required
value
string
required
removed_from_workflow_count
integer
required