Skip to main content
GET
/
api
/
user
/
me
/
trusted-devices
List the current user's active MFA-trusted devices
curl --request GET \
  --url https://pria.praxislxp.com/api/user/me/trusted-devices \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "devices": [
    {
      "id": "<string>",
      "deviceId": "<string>",
      "sourceIp": "10.0.0.5",
      "ua": "Mozilla/5.0 ...",
      "createdAt": "2023-11-07T05:31:56Z",
      "lastUsedAt": "2023-11-07T05:31:56Z",
      "expiresAt": "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

Response

200 - application/json

List of trusted devices.

success
boolean
devices
object[]