curl --request PATCH \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/tags' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"tags": [
"priority"
]
}'
{
"job_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"tags": [
"priority"
]
}
Update Job Tags V1
Replace the tags on an existing job. Tag values follow the same rules as TriggerRequest.tags (≤20 entries × ≤64 chars, alphanumeric + _-:, deduped)…
PATCH
/
api
/
v1
/
jobs
/
{job_id}
/
tags
curl --request PATCH \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/tags' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"tags": [
"priority"
]
}'
{
"job_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"tags": [
"priority"
]
}
Replace the tags on an existing job.
Tag values follow the same rules as
TriggerRequest.tags (≤20
entries × ≤64 chars, alphanumeric + _-:, deduped). Pass tags: []
to clear them entirely. The rest of params is preserved.
Path parameters
string (uuid)
required
Request body
UpdateJobTagsRequest
string[]
required
Replacement tag list. Pass an empty array to clear tags. Same per-tag rules as
TriggerRequest.tags.Response
JobTagsResponse
string
required
string[]
required
Status codes
| Code | Meaning |
|---|---|
200 | Successful Response |
422 | Validation Error |
curl --request PATCH \
--url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/tags' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"tags": [
"priority"
]
}'
{
"job_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"tags": [
"priority"
]
}
Last modified on August 31, 2026