curl --request PATCH \
--url 'https://api.computer.stateset.app/api/v1/approval-policies/{policy_id}' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"name": "Two-Person Tent",
"tool_patterns": [
"string"
],
"auto_approve_rules": {},
"is_active": true
}'
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"tool_patterns": [
"string"
],
"auto_approve_rules": {},
"is_active": true,
"created_at": "2026-08-31T14:22:05Z",
"updated_at": "2026-08-31T14:22:05Z"
}
Update Approval Policy V1
Update name / tool_patterns / auto_approve_rules / is_active. Empty PATCH (no fields set) returns 422 — disallows accidental no-op writes that would still bump…
PATCH
/
api
/
v1
/
approval-policies
/
{policy_id}
curl --request PATCH \
--url 'https://api.computer.stateset.app/api/v1/approval-policies/{policy_id}' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"name": "Two-Person Tent",
"tool_patterns": [
"string"
],
"auto_approve_rules": {},
"is_active": true
}'
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"tool_patterns": [
"string"
],
"auto_approve_rules": {},
"is_active": true,
"created_at": "2026-08-31T14:22:05Z",
"updated_at": "2026-08-31T14:22:05Z"
}
Update name / tool_patterns / auto_approve_rules / is_active.
Empty PATCH (no fields set) returns 422 — disallows accidental
no-op writes that would still bump
updated_at and clutter
audit trails.
Path parameters
string (uuid)
required
Request body
ApprovalPolicyUpdateRequest
string,null
string[],null
object,null
boolean,null
Response
ApprovalPolicySummary
string
required
string
required
string[]
required
object
required
boolean
required
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/approval-policies/{policy_id}' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"name": "Two-Person Tent",
"tool_patterns": [
"string"
],
"auto_approve_rules": {},
"is_active": true
}'
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"tool_patterns": [
"string"
],
"auto_approve_rules": {},
"is_active": true,
"created_at": "2026-08-31T14:22:05Z",
"updated_at": "2026-08-31T14:22:05Z"
}
Last modified on August 31, 2026