Skip to main content
POST
/
auth
/
login
/
mfa
/
totp
Login with TOTP
curl --request POST \
  --url https://api.fluxer.app/v1/auth/login/mfa/totp \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "<string>",
  "ticket": "<string>"
}
'
{
  "token": "<string>",
  "user_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fluxer.app/llms.txt

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

Body

application/json
code
string
required

The TOTP code from the authenticator app

ticket
string
required

The MFA ticket from the login response

Response

Success

token
string
required

Authentication token for API requests

user_id
string
required

ID of the authenticated user

Pattern: ^(0|[1-9][0-9]*)$