Last updated 5 months ago
curl -L \ --url '/2fa/generate-qr'
{ "qrCode": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...", "link": "otpauth://totp/AppName:user@example.com?secret=JBSWY3DPEHPK3PXP&issuer=AppName" }
curl -L \ --request POST \ --url '/2fa/disable-two-factor-auth'
{ "message": "Two-factor authentication disabled successfully", "description": "Two-factor authentication has been disabled for your account." }
curl -L \ --request POST \ --url '/2fa/desimpersonation'
{ "accessToken": "access_token", "refreshToken": "refresh_token" }
Two-factor authentication code
123456
curl -L \ --request POST \ --url '/2fa/enable-two-factor-auth' \ --header 'Content-Type: application/json' \ --data '{ "code": "123456" }'
{ "message": "Two-factor authentication enabled successfully", "description": "Two-factor authentication has been enabled for your account." }
curl -L \ --request POST \ --url '/2fa/authenticate' \ --header 'Content-Type: application/json' \ --data '{ "code": "123456" }'
{ "accessToken": "access_token", "refreshToken": "refresh_token", "isTwoFactorEnable": true }
1
curl -L \ --request POST \ --url '/2fa/impersonate' \ --header 'Content-Type: application/json' \ --data '{ "userId": 1, "teamId": 1, "code": "123456" }'
{ "accessToken": "access_token", "isTwoFactorEnable": false }