Skip to main content
GET
/
api
/
admin
/
users
/
{userId}
/
mfa-audit
Read the MFA audit log for a target user (super-only)
curl --request GET \
  --url https://pria.praxislxp.com/api/admin/users/{userId}/mfa-audit \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "events": [
    {
      "id": "<string>",
      "event": "mfa.code.verified",
      "user": "<string>",
      "actor": "<string>",
      "actorType": "self",
      "ip": "<string>",
      "ua": "<string>",
      "meta": {},
      "created": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token passed in authorization header

Path Parameters

userId
string
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
before
string<date-time>

ISO-8601 timestamp; results with created < before are returned.

Response

Page of audit events.

success
boolean
events
object[]