Skip to main content
POST
/
api
/
auth
/
mfa-resend
Request a new MFA code for the current challenge
curl --request POST \
  --url https://pria.praxislxp.com/api/auth/mfa-resend \
  --header 'Content-Type: application/json' \
  --data '
{
  "challengeId": "65f2c9a1d8e4b3c5a1234567"
}
'
{
  "success": true,
  "challengeId": "65f2cabe1234e5f6a8765432",
  "maskedEmail": "hu***@praxis-ai.com"
}

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.

Body

application/json
challengeId
string
required

Opaque server-issued challenge identifier.

Example:

"65f2c9a1d8e4b3c5a1234567"

Response

New code emailed; client must use the newly-returned challengeId for subsequent verify / resend / cancel calls.

success
boolean
Example:

true

challengeId
string

Identifier of the freshly-issued challenge. The prior challenge is invalidated; future verify / resend / cancel calls must use this new id.

Example:

"65f2cabe1234e5f6a8765432"

maskedEmail
string
Example:

"hu***@praxis-ai.com"