Skip to main content
POST
/
agents
/
{agent_id}
/
resolve
Resolve a concern or violation
curl --request POST \
  --url https://api.mnemom.ai/v1/agents/{agent_id}/resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "target_type": "checkpoint",
  "target_id": "<string>",
  "resolution_type": "acknowledged",
  "action_name": "<string>",
  "value_name": "<string>"
}
'
{
  "resolution_id": "<string>",
  "resolution_type": "<string>",
  "resolved_by": "<string>",
  "card_modified": true
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

agent_id
string
required

Agent identifier (e.g. smolt-abc123)

Body

application/json
target_type
enum<string>
required
Available options:
checkpoint,
trace
target_id
string
required
resolution_type
enum<string>
required
Available options:
acknowledged,
allow_action,
add_value
action_name
string

Required when resolution_type is allow_action

value_name
string

Required when resolution_type is add_value

Response

Resolution created

resolution_id
string
resolution_type
string
resolved_by
string
card_modified
boolean