Skip to main content
POST
/
v1
/
agents
/
{workflow_permanent_id}
/
tags
Apply agent tags
curl --request POST \
  --url https://api.skyvern.com/v1/agents/{workflow_permanent_id}/tags \
  --header 'Content-Type: application/json' \
  --data '
{
  "tags": {},
  "tags_to_delete": [
    "<string>"
  ]
}
'
{
  "workflow_permanent_id": "<string>",
  "tags": {}
}

Path Parameters

workflow_permanent_id
string
required

Workflow permanent ID

Example:

"wpid_123"

Body

application/json

Body for POST /v1/workflows/{wpid}/tags. Either field may be empty; both empty is a valid no-op. Same-key collisions: set wins over delete.

tags
Tags · object

Tags to set (overwrite). Map of key to value.

tags_to_delete
string[]

Tag keys to soft-delete.

Response

Successfully applied tag changes

Current tag map for a workflow.

workflow_permanent_id
string
required
tags
Tags · object
required