post__mfa_primary
POST /mfa/primary
Set Primary MFA Method
Set the primary multi-factor authentication method for the authenticated user. The primary method will be used as the default when multiple MFA methods are available.
TypeScript Client Library
// Note: This endpoint doesn't have a direct client method in the provided TypeScript client
// You would need to use the generic makeRequest method:
// this.makeRequest<any>('mfa/primary', 'POST', { mfaType: 'GOOGLE_AUTH' });
Code Samples
# You can also use wget
curl -X POST https://backend.flashback.tech/mfa/primary \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access-token}' \
-d '{
"mfaType": "GOOGLE_AUTH"
}'
Request Body
mfaType
string
true
Type of MFA method to set as primary
Body parameter
{
"mfaType": "GOOGLE_AUTH"
}
Example responses
200 Response
{
"success": true,
"message": "Primary MFA method updated"
}
500 Response
{
"success": false,
"error": "Failed to set primary MFA"
}
Responses
Response Schema
Status Code 200
» success
boolean
false
none
Indicates if the request was successful
» message
string
false
none
Success message confirming the action
Status Code 500
» success
boolean
false
none
Indicates if the request was successful
» error
string
false
none
Error message describing the issue
Enumerated Values
» mfaType
GOOGLE_AUTH
Google Authenticator TOTP
» mfaType
MAGIC_LINK
Magic link email verification
» mfaType
PASSKEY
WebAuthn passkey authentication
Last updated
Was this helpful?