Skip to main content
GET
/
agents
/
{agent_id}
/
exemptions
List active exemptions for an agent
curl --request GET \
  --url https://api.mnemom.ai/v1/agents/{agent_id}/exemptions \
  --header 'Authorization: Bearer <token>'
{
  "agent_id": "<string>",
  "exemptions": [
    {
      "id": "<string>",
      "agent_id": "<string>",
      "reason": "<string>",
      "granted_by": "<string>",
      "granted_at": "2023-11-07T05:31:56Z",
      "exempt_patterns": [
        "<string>"
      ],
      "expires_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

agent_id
string
required

Agent identifier (e.g. smolt-abc123)

Response

Active exemptions.

agent_id
string
required
exemptions
object[]
required
total
integer
required