curl --request PUT \
--url https://api.mnemom.ai/v1/agents/{agent_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": "<string>",
"agent_hash": "<string>",
"user_id": "<string>",
"email": "<string>",
"claimed_at": "2023-11-07T05:31:56Z",
"last_seen": "2023-11-07T05:31:56Z",
"status": "active",
"public": true,
"aip_enforcement_mode": "observe",
"billing_account_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}Update the name of an agent you own.
curl --request PUT \
--url https://api.mnemom.ai/v1/agents/{agent_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": "<string>",
"agent_hash": "<string>",
"user_id": "<string>",
"email": "<string>",
"claimed_at": "2023-11-07T05:31:56Z",
"last_seen": "2023-11-07T05:31:56Z",
"status": "active",
"public": true,
"aip_enforcement_mode": "observe",
"billing_account_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}Supabase JWT token in Authorization: Bearer header
Agent identifier (e.g. smolt-abc123)
New agent name. 2-32 characters, alphanumeric and hyphens only.
2 - 32^[a-zA-Z0-9][a-zA-Z0-9-]{0,30}[a-zA-Z0-9]$Updated agent record
active, offline observe, enforce, nudge