Skip to main content
PUT
/
agents
/
{agent_id}
/
org-card-exempt
Set agent org card exemption
curl --request PUT \
  --url https://api.mnemom.ai/v1/agents/{agent_id}/org-card-exempt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "exempt": true,
  "reason": "<string>"
}
'
{
  "agent_id": "<string>",
  "exempt": true,
  "reason": "<string>",
  "updated_at": "2023-11-07T05:31:56Z"
}

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
exempt
boolean
required

Whether the agent is exempt from the org card template

reason
string

Required when setting exempt=true. Stored in audit trail.

Maximum string length: 500

Response

Exemption updated

agent_id
string
exempt
boolean
reason
string | null
updated_at
string<date-time>