Skip to main content
PUT
/
orgs
/
{org_id}
/
agents
/
{agent_id}
/
containment-policy
Update auto-containment policy
curl --request PUT \
  --url https://api.mnemom.ai/v1/orgs/{org_id}/agents/{agent_id}/containment-policy \
  --header 'Content-Type: application/json' \
  --data '
{
  "auto_containment_threshold": 3
}
'
{
  "agent_id": "<string>",
  "auto_containment_threshold": 123
}

Path Parameters

org_id
string
required
agent_id
string
required

Body

application/json
auto_containment_threshold
integer | null
required

Number of consecutive boundary violations before auto-pause. Set to null to disable.

Required range: x >= 2

Response

Policy updated

agent_id
string
auto_containment_threshold
integer | null