Skip to content
Fluxer API

Multi-factor authentication

Multi-factor authentication asks for a second proof of identity after the account password. Fluxer accepts a TOTP authenticator app and WebAuthn credentials such as a passkey. A one-use backup code stands in for a TOTP code, and sudo mode reuses these factors to guard every security-sensitive operation across the API.

Every route here requires a non-bot user session. Fluxer rejects an account in suspicious activity state with 403 ACCOUNT_SUSPICIOUS_ACTIVITY, including on the two sudo routes.

Fluxer validates a TOTP code as a six-digit HMAC-SHA-1 one-time password over a 30-second time step counted from the Unix epoch. It accepts one time step of clock skew on either side. A submitted code is exactly six decimal digits, and Fluxer rejects any other value. The shared secret is Base32, and Fluxer ignores whitespace, hyphens, and trailing padding when it decodes one.

The client generates the secret, presents it to the user, and submits it with a code derived from it when calling Enable TOTP MFA. Fluxer never generates or returns a TOTP secret.

Regenerating backup codes deletes the stored set and then issues exactly 10 replacements, so any code the user had already saved stops working.

Enabling TOTP issues 10 codes without deleting anything first. An account that already generated a set through List MFA backup codes while holding no TOTP secret keeps those codes alongside the 10 the enable response returns. Every one stays redeemable. Disabling TOTP deletes every backup code without issuing replacements.

List MFA backup codes reads the current set back at any time and reports which codes are already consumed. Consuming a code is irreversible. An account that cannot prove sudo mode reads the same set through the backup codes challenge.

A backup code has exactly three entry points: the mfa_code field of the sudo verification object with mfa_method set to totp, the code field of Disable TOTP MFA, and the code field of complete login with TOTP. Every other code field rejects it. All three accept a current authenticator code or an unconsumed backup code. Enable TOTP MFA validates only against the secret being enrolled.

Every entry point requires the account to hold a TOTP secret. An account whose only authenticator is a WebAuthn credential can still regenerate backup codes, but holds no secret, so none of the three entry points accepts one.

An account that lost its saved backup codes reads the set back through an emailed challenge. Start MFA backup codes challenge opens a ticket and emails a code. Verify MFA backup codes challenge code exchanges that code for the current set and a proof. Regenerate MFA backup codes then presents the ticket and the proof to replace the set. Resend MFA backup codes challenge code sends a fresh code at any point before verification.

Sudo mode applies to none of the four, so a user who no longer has the authenticator app still reaches the codes through the email address. The account needs a verified email address and TOTP enabled. Only Start MFA backup codes challenge checks the address, and Regenerate MFA backup codes checks TOTP a second time.

A ticket is a version 4 UUID and lives 30 minutes from its last write. Starting the challenge, resending the code, and verifying the code each write the ticket. Regeneration reads it and writes nothing, so the window runs from the verification that preceded it. A ticket Fluxer no longer holds, or one opened by another account, fails with INVALID_OR_EXPIRED_TICKET.

A verification code is eight characters drawn from the uppercase Latin alphabet and the decimal digits, written as two four-character groups separated by a hyphen. A code lives 10 minutes from the moment it is sent, and each send replaces the code the previous send issued.

Verification issues a proof, a version 4 UUID, and clears the code from the ticket. Fluxer compares a submitted proof in constant time and rejects a mismatch with INVALID_PROOF_TOKEN. A ticket holding no proof at all fails with INVALID_OR_EXPIRED_TICKET on the path verification_proof.

Every ticket, code, and proof failure named here arrives as HTTP 400 whose top-level code is INVALID_FORM_BODY. The named value is the code of one validation error entry, and that entry’s path is the field it belongs to.

Each operation passes through its own route bucket and, separately, through one of the controls below. Exhausting either produces HTTP 429 even when the other has room.

ControlAllowanceOperation
Challenge start3 sends per 15 minutes for each accountStart MFA backup codes challenge
Challenge resend3 sends per 15 minutes for each accountResend MFA backup codes challenge code
Code verification5 attempts per 15 minutes for each ticketVerify MFA backup codes challenge code
Regeneration5 attempts per 15 minutes for each ticketRegenerate MFA backup codes

Fluxer refuses a resend for 30 seconds after the previous send on the same ticket, and that refusal is HTTP 429 with a Retry-After computed from the exact moment the next send becomes available. It is independent of the route bucket and of the two 15-minute send controls.

Sudo mode is a short-lived proof that the human in front of the session is still the account holder. An operation that requires it accepts a valid X-Fluxer-Sudo-Mode-JWT request header or the sudo verification object fields inside the JSON body.

The sudo token is an HS256 JSON Web Token with a lifetime of exactly five minutes. Its subject is the account snowflake, and verification rejects a token whose subject is any other account. The token is opaque, and it is not bound to the session that obtained it. Fluxer generates one only when the account has at least one MFA authenticator and the request proved identity with MFA.

The accepted proof depends on the authenticators the account has configured.

Account stateAccepted proof
No authenticatorpassword
Any authenticatormfa_method with its matching material, because password is no longer accepted
Neither an authenticator nor a password credentialNothing, and eligible sudo operations pass

The totp method reads mfa_code as a current authenticator code or an unconsumed backup code and requires the account to hold a TOTP secret. The webauthn method reads webauthn_response and webauthn_challenge together and requires a registered credential.

A request that has no accepted proof fails with 403 SUDO_MODE_REQUIRED. Its body has the sudo mode methods object members, and a client can present the correct challenge. A proof that is present but wrong fails instead with 400 INVALID_FORM_BODY and a validation error entry. A mismatched password produces path password with code INVALID_PASSWORD. A rejected TOTP code, backup code, or WebAuthn assertion produces path mfa_code with code INVALID_MFA_CODE, so a client cannot tell which of the three was rejected.

The totp method also consumes a per-account allowance of 10 multi-factor attempts in 15 minutes, shared by every sudo-gated operation on every resource. Fluxer charges the allowance before it checks the code, so a wrong code and a correct code both draw on it. A correct code resets the counter to zero. While it is exhausted, a correct code returns the same INVALID_MFA_CODE entry as a wrong one. The webauthn method draws on no allowance. The login MFA allowances on HTTP authentication are counted separately.

Fluxer returns an issued or echoed token in the X-Fluxer-Sudo-Mode-JWT response header. A client retains it and presents it through the same header on every later sudo-gated operation.

In a SUDO_MODE_REQUIRED error response, has_mfa and methods are at the top level of the error response object.

FieldTypeDescription
has_mfabooleanWhether the account has the TOTP or the WebAuthn authenticator type
methodssudo mode method availability objectAuthenticators the account can present
FieldTypeDescription
totp1booleanWhether the account has a TOTP secret and the TOTP authenticator type
webauthnbooleanWhether the account has the WebAuthn authenticator type

1 Both conditions are required, so an account holding a stored secret without the authenticator type reports false

Operations that require sudo mode merge these fields into their own JSON body. Every field is optional at the boundary, because the accepted combination depends on the account state described in sudo mode.

FieldTypeDescription
password?1stringAccount password (8-256 characters)
mfa_method?2stringMFA method, either totp or webauthn
mfa_code?3stringAuthenticator code or unconsumed backup code (1-32 characters)
webauthn_response?4WebAuthn assertion objectAssertion produced for the supplied challenge
webauthn_challenge?4stringChallenge returned by create sudo WebAuthn authentication options (1-256 characters)

1 Considered only while the account has no MFA authenticator, and ignored once TOTP or a WebAuthn credential exists

2 Required when the account has any MFA authenticator, unless a valid sudo token is already present

3 Required when mfa_method is totp, with a current authenticator code or an unconsumed backup code

4 Both fields are required together when mfa_method is webauthn

FieldTypeDescription
backup_codesarray[MFA backup code object]The account’s current backup codes
{
"backup_codes": [
{"code": "a3f2-9kd7", "consumed": false},
{"code": "b81c-4nq0", "consumed": true}
]
}

A backup code is two four-character groups separated by a hyphen. Each group is drawn from the lowercase Latin alphabet and the decimal digits.

FieldTypeDescription
codestringOne-use backup code
consumedbooleanWhether the code has already been consumed

The state of a freshly created backup codes challenge ticket.

FieldTypeDescription
ticketstringThe identifier every later step of this flow sends
code_expires_atISO8601 timestampThe moment the emailed code expires, 10 minutes after it was sent
resend_available_atISO8601 timestampThe earliest moment the code can be resent, 30 seconds after the last send

The backup codes and the proof a verified challenge hands back.

FieldTypeDescription
backup_codesarray[MFA backup code object]The account’s current backup codes
verification_proof1stringThe proof Regenerate MFA backup codes consumes

1 A resend clears the stored proof and the next verification issues a different value

An account holds at most 10 WebAuthn credentials. Fluxer checks the limit twice, once before create WebAuthn registration options issues a challenge and again before Register WebAuthn credential stores the result. It refuses parallel enrolment flows at whichever step first sees the tenth credential.

Fluxer verifies every assertion against the relying party identifier and the allowed origins configured for the instance. The credential’s signature counter strictly increases, unless both the stored and reported counters are zero, which is how an authenticator without a counter appears.

FieldTypeDescription
idstringBase64url credential ID
namestringUser-assigned credential name (1-100 characters)
created_atISO8601 timestampThe time Register WebAuthn credential stored the credential
last_used_at1?ISO8601 timestampMost recent successful authentication

1 Null until the credential completes a login, MFA, or sudo assertion for the first time

The credential’s public key, signature counter, and reported transports are never returned.

FieldTypeDescription
idstringBase64url credential ID
typestringCredential type, always public-key
transports?1array[string]Authenticator transports from the WebAuthn authenticator transport values

1 Present only when the authenticator reported its transports during registration

ValueDescription
bleBluetooth Low Energy
cableCloud-assisted Bluetooth Low Energy
hybridHybrid transport
internalPlatform authenticator
nfcNear-field communication
smart-cardSmart card
usbUSB authenticator

The browser WebAuthn PublicKeyCredential serialisation. Its field names are camelCase, because the boundary accepts the exact structure the WebAuthn client API produces.

FieldTypeDescription
idstringBase64url credential ID
rawIdstringBase64url raw credential ID
responseWebAuthn assertion response objectAuthenticator assertion response
authenticatorAttachment?stringAuthenticator attachment, either cross-platform or platform
clientExtensionResultsWebAuthn client extension results objectClient extension outputs
typestringCredential type, always public-key

The boundary does not validate the shape of this object, so no validation entry is ever reported against webauthn_response itself. Fluxer forwards it to WebAuthn verification exactly as supplied, and a malformed assertion fails that verification and surfaces as the mfa_code entry described in sudo mode.

FieldTypeDescription
clientDataJSONstringBase64url client data JSON
authenticatorDatastringBase64url authenticator data
signaturestringBase64url assertion signature
userHandle?1stringBase64url user handle

1 Present only when the assertion came from a discoverable credential

FieldTypeDescription
idstringBase64url credential ID
rawIdstringBase64url raw credential ID
responseWebAuthn attestation response objectAuthenticator attestation response
authenticatorAttachment?stringAuthenticator attachment, either cross-platform or platform
clientExtensionResultsWebAuthn client extension results objectClient extension outputs
typestringCredential type, always public-key

The boundary does not validate this shape either. An unusable attestation returns INVALID_WEBAUTHN_CREDENTIAL, and no validation entry names a field of this object.

FieldTypeDescription
clientDataJSONstringBase64url client data JSON
attestationObjectstringBase64url attestation object
authenticatorData?stringBase64url authenticator data
transports?1array[string]Authenticator transports from the WebAuthn authenticator transport values
publicKeyAlgorithm?integerCOSE public key algorithm identifier
publicKey?stringBase64url credential public key

1 Retained with the credential and returned later in allowCredentials and excludeCredentials

FieldTypeDescription
appid?booleanWhether the AppID extension was used
credProps?WebAuthn credential properties objectCredential properties output
hmacCreateSecret?booleanWhether the authenticator created an HMAC secret

Fluxer accepts additional extension result fields.

FieldTypeDescription
rk?booleanWhether the created credential is discoverable

Fluxer accepts additional credential property fields.

Fluxer returns this object from every operation that issues a WebAuthn authentication challenge: sudo verification here, and the two login option operations on HTTP authentication.

FieldTypeDescription
challenge1stringBase64url one-use challenge
timeout2integerAuthenticator operation timeout in milliseconds
rpIdstringRelying party identifier configured for the instance
allowCredentials?3array[WebAuthn credential descriptor object]Credentials accepted for this operation
userVerification4stringUser verification requirement, one of discouraged, preferred, or required

1 Expires five minutes after issue and is bound to the exact context that issued it, so a sudo challenge cannot be redeemed as a login assertion

2 Every operation emits the fixed value 60000, a standard PublicKeyCredential request option

3 Sudo options list every credential currently registered to the account. The field is absent only on the discoverable login route

4 Sudo options and MFA login completion request discouraged. Discoverable login requests and verifies required

Fluxer emits no other PublicKeyCredential request options member, so hints and extensions never appear on this object.

FieldTypeDescription
rpWebAuthn relying party objectRelying party identity
userWebAuthn registration user objectAccount identity bound to the credential
challengestringBase64url one-use challenge
pubKeyCredParams1array[WebAuthn public key parameter object]Accepted public key algorithms
timeout2integerAuthenticator operation timeout in milliseconds
excludeCredentials3array[WebAuthn credential descriptor object]Existing credentials that cannot be registered again
authenticatorSelection4WebAuthn authenticator selection objectAuthenticator selection requirements
attestation5stringAttestation conveyance, always none
extensions6WebAuthn client extension inputs objectRequested client extensions
hints7array[string]Authenticator hints

1 Always the three COSE identifiers -8, -7, and -257, in that order, standing for EdDSA, ECDSA with SHA-256, and RSASSA-PKCS1-v1_5 with SHA-256

2 Every registration emits the fixed value 60000

3 Holds every credential already registered to the account, so an authenticator cannot enrol the same credential twice. It is an empty array when the account holds none

4 Fluxer requests a preferred discoverable credential and preferred user verification, and requires neither, so requireResidentKey is false

5 Fluxer requests none, so no attestation statement is retained

6 Always present with credProps set to true, the only extension Fluxer requests

7 Always an empty array

FieldTypeDescription
namestringRelying party display name configured for the instance
idstringRelying party identifier configured for the instance
FieldTypeDescription
idstringWebAuthn user handle, the decimal account snowflake encoded as base64url
namestringAccount username
displayName1stringAccount display label

1 Fluxer supplies the account username in both name and displayName

FieldTypeDescription
algintegerCOSE algorithm identifier
typestringCredential type, always public-key
FieldTypeDescription
authenticatorAttachment?stringAuthenticator attachment, either cross-platform or platform
requireResidentKey?booleanWhether a discoverable credential is required
residentKey?stringDiscoverable credential preference, one of discouraged, preferred, or required
userVerification?stringUser verification preference, one of discouraged, preferred, or required
FieldTypeDescription
appid?stringAppID extension value
credProps?1booleanWhether credential properties are requested
hmacCreateSecret?booleanWhether HMAC secret creation is requested
minPinLength?booleanWhether minimum PIN length is requested

1 The only member Fluxer ever sets, always true on WebAuthn registration options

FieldTypeDescription
totpbooleanWhether the account has a TOTP secret and the TOTP authenticator type, as in the sudo mode method availability object
webauthnbooleanWhether the account has the WebAuthn authenticator type
has_mfabooleanWhether the account has the TOTP or the WebAuthn authenticator type, as in the sudo mode methods object
POST/v1/users/@me/mfa/totp/enableMFA

Enables TOTP for the current account and returns an MFA backup codes object holding 10 new codes. Sudo mode is required. Emits a User Update Gateway event.

Fluxer checks sudo mode first, so an account that already holds a WebAuthn credential proves it with that credential.

  • The account needs a verified email address and is otherwise refused with 403 MFA_EMAIL_VERIFICATION_REQUIRED.
  • An account that already has TOTP enabled is refused with 400 TWO_FA_NOT_ENABLED.

The body extends the sudo verification object with the fields below, and an existing sudo proof travels in the X-Fluxer-Sudo-Mode-JWT request header.

FieldTypeDescription
secret1stringBase32 TOTP secret (1-256 characters)
code2stringCurrent TOTP code generated from the submitted secret (1-32 characters)

1 Generated by the client and stored verbatim on the account

2 A backup code is rejected here

StatusBodyCondition
200MFA backup codes objectTOTP was enabled and 10 backup codes were issued
400error responseThe TOTP code did not match the submitted secret, returning INVALID_CODE on the path code, or TOTP is already enabled and the request returns TWO_FA_NOT_ENABLED
403error responseThe account email is unverified and the request returns MFA_EMAIL_VERIFICATION_REQUIRED, or sudo mode was not proven and the request returns SUDO_MODE_REQUIRED

TOTP is enabled and 10 backup codes are issued. Any backup code the account already held stays in place, so the response has only the 10 new codes. The resulting authenticator types are also applied to every bot account owned by the user. User Update reaches the user’s sessions and each owned bot whose authenticator types changed.

10 requests per minute for each authenticated user, on the user:mfa:totp:enable bucket.

POST/v1/users/@me/mfa/totp/disableMFA

Disables TOTP for the current account and returns 204 with an empty body. Sudo mode is required in addition to this route’s code field. Emits a User Update Gateway event.

The account needs TOTP already enabled and is otherwise refused with 400 TWO_FACTOR_REQUIRED. A verified email is not required, so an account whose address later became unverified can still remove its authenticator.

The body extends the sudo verification object with the field below, and an existing sudo proof travels in the X-Fluxer-Sudo-Mode-JWT request header.

FieldTypeDescription
code1stringCurrent TOTP code or an unconsumed backup code (1-32 characters)

1 A wrong value returns INVALID_CODE on the path code

StatusBodyCondition
204emptyTOTP was disabled
400error responseThe code did not match, or TOTP is not enabled and the request returns TWO_FACTOR_REQUIRED
403error responseSudo mode was not proven and the request returns SUDO_MODE_REQUIRED

TOTP is disabled and every backup code stops working. The TOTP authenticator type is removed, along with the unassigned legacy authenticator value 1 if the account still had it. The resulting authenticator types are also applied to every bot account owned by the user. User Update reaches the user’s sessions and each owned bot whose authenticator types changed.

10 requests per minute for each authenticated user, on the user:mfa:totp:disable bucket.

POST/v1/users/@me/mfa/backup-codesMFA

Returns an MFA backup codes object, replacing the set first when regenerate is true. Sudo mode is required.

Neither a verified email nor an authenticator is required, so an account with no MFA at all can prove sudo mode with its password and use this operation.

A backup code presented as mfa_code to satisfy sudo mode is consumed. With regenerate false it comes back with consumed set to true. With regenerate true it is deleted with the rest of the previous set and does not appear.

The body extends the sudo verification object with the field below, and an existing sudo proof travels in the X-Fluxer-Sudo-Mode-JWT request header.

FieldTypeDescription
regenerate1booleanWhether to discard the current set and issue 10 replacements

1 The field is required. Passing false reads the current set without changing it

StatusBodyCondition
200MFA backup codes objectThe current or replacement codes were returned
403error responseSudo mode was not proven and the request returns SUDO_MODE_REQUIRED

6 requests per minute for each authenticated user, on the user:mfa:backup_codes bucket.

POST/v1/users/@me/mfa/backup-codes/challenge

Creates a backup codes challenge ticket and sends a verification code to the account email address. Returns an MFA backup codes challenge object on success.

Sudo mode is not required, and the route reads no sudo verification field.

The send consumes the challenge start control.

  • The account needs a verified email address and is otherwise refused with 403 MFA_EMAIL_VERIFICATION_REQUIRED.
  • An account holding no email address is refused with 400 INVALID_FORM_BODY and the validation code USER_DOES_NOT_HAVE_AN_EMAIL_ADDRESS on the path email.
  • The account needs TOTP enabled and is otherwise refused with 400 TWO_FACTOR_REQUIRED.

The body can be omitted, and any supplied body is an object with no fields. Fluxer strips unknown keys before it handles the request.

StatusBodyCondition
200MFA backup codes challenge objectThe ticket was created and a code was sent
400error responseTOTP is not enabled and the request returns TWO_FACTOR_REQUIRED, or the account holds no address
403error responseThe account email is unverified and the request returns MFA_EMAIL_VERIFICATION_REQUIRED

Fluxer stores a ticket holding the code and its expiry, and one verification email goes to the account address. No account field changes and no backup code is issued.

6 requests per minute for each authenticated user, on the user:mfa:backup_codes_challenge:start bucket.

POST/v1/users/@me/mfa/backup-codes/challenge/resend

Sends a fresh verification code for an active backup codes challenge ticket. Returns 204 with an empty body.

The route reads the ticket and the account address only. An account holding no email address is refused with 400 INVALID_FORM_BODY and the validation code USER_DOES_NOT_HAVE_AN_EMAIL_ADDRESS on the path email.

The send consumes the challenge resend control, and the ticket enforces its own 30-second cooldown.

FieldTypeDescription
ticketstringThe identifier returned by Start MFA backup codes challenge (1-256 characters)
StatusBodyCondition
204emptyA replacement code was sent
400error responseThe ticket is unknown and the request returns INVALID_OR_EXPIRED_TICKET

Fluxer replaces the ticket’s code, send time, and code expiry, which invalidates the previous code. The stored proof is cleared and one verification email goes to the account address.

6 requests per minute for each authenticated user, on the user:mfa:backup_codes_challenge:resend bucket.

POST/v1/users/@me/mfa/backup-codes/challenge/verify

Verifies the emailed code and returns an MFA backup codes verification object holding the current codes and a proof.

Verification consumes the code. A ticket holding no code fails with VERIFICATION_CODE_NOT_ISSUED, which is what a second verification of the same ticket returns. A code past its 10-minute lifetime fails with VERIFICATION_CODE_EXPIRED. A mismatch fails with INVALID_VERIFICATION_CODE.

Fluxer charges the per-ticket verification allowance before it reads the code, so a wrong code and a correct code both draw on it.

FieldTypeDescription
ticketstringThe identifier returned by Start MFA backup codes challenge (1-256 characters)
codestringThe code sent to the account address (1-256 characters)
StatusBodyCondition
200MFA backup codes verification objectThe code was accepted
400error responseThe ticket returns INVALID_OR_EXPIRED_TICKET, or the code was not issued, has expired, or did not match

The ticket stores a fresh proof and its code is cleared. The response holds every backup code on the account, including the consumed ones. No backup code is issued, consumed, or deleted.

20 requests per minute for each authenticated user, on the user:mfa:backup_codes_challenge:verify bucket.

POST/v1/users/@me/mfa/backup-codes/challenge/regenerate

Replaces the account’s backup codes with 10 new ones and returns an MFA backup codes object. Sudo mode is not required.

The ticket and its proof are the only authorisation. The account needs TOTP enabled and is otherwise refused with 400 TWO_FACTOR_REQUIRED.

A ticket holding no proof returns INVALID_OR_EXPIRED_TICKET on the path verification_proof, and a proof that does not match returns INVALID_PROOF_TOKEN.

FieldTypeDescription
ticketstringThe identifier returned by Start MFA backup codes challenge (1-256 characters)
verification_proofstringThe proof issued by Verify MFA backup codes challenge code (1-256 characters)
StatusBodyCondition
200MFA backup codes objectThe previous set was deleted and 10 replacements were issued
400error responseTOTP is not enabled and the request returns TWO_FACTOR_REQUIRED, or the ticket or the proof was rejected

Every code from the previous set is deleted and 10 replacements are written. The deletion and the insertion are separate writes, so the account holds no backup code at all between them. The authenticator types are unchanged and Fluxer emits no Gateway event.

6 requests per minute for each authenticated user, on the user:mfa:backup_codes_challenge:regenerate bucket.

GET/v1/users/@me/mfa/webauthn/credentials

Returns an array of WebAuthn credential objects registered to the current account, or an empty array when none exist. Sudo mode is not required.

StatusBodyCondition
200array[WebAuthn credential object]Credentials were returned

40 requests per 10 seconds for each authenticated user, on the mfa:webauthn:list bucket.

POST/v1/users/@me/mfa/webauthn/credentials/registration-optionsMFA

Creates a one-use registration challenge and returns a WebAuthn registration options object. Sudo mode is required.

This operation sets no X-Fluxer-Sudo-Mode-JWT response header.

  • The account needs a verified email address.
  • An account already holding 10 credentials receives 400 WEBAUTHN_CREDENTIAL_LIMIT_REACHED and no challenge.

The body is a sudo verification object. An existing sudo proof travels in the X-Fluxer-Sudo-Mode-JWT request header.

StatusBodyCondition
200WebAuthn registration options objectChallenge and registration options were issued
400error response10 credentials are already registered and the request returns WEBAUTHN_CREDENTIAL_LIMIT_REACHED
403error responseThe account email is unverified and the request returns MFA_EMAIL_VERIFICATION_REQUIRED, or sudo mode was not proven and the request returns SUDO_MODE_REQUIRED

Fluxer issues a registration challenge for the current user. It expires after five minutes and can be redeemed once.

20 requests per 10 seconds for each authenticated user, on the mfa:webauthn:registration_options bucket.

POST/v1/users/@me/mfa/webauthn/credentials

Consumes a registration challenge, adds one WebAuthn credential to the current account, and returns 204 with an empty body. Emits a WebAuthn Credentials Update Gateway event, and a User Update event when this is the account’s first WebAuthn credential.

The account needs a verified email and fewer than 10 registered credentials. This route accepts no sudo verification fields of its own. Fluxer verifies the attestation against the instance relying party identifier and its allowed origins, and does not require user verification.

FieldTypeDescription
responseWebAuthn registration response objectAuthenticator response for the registration challenge
challengestringOne-use registration challenge (1-1024 characters)
namestringUser-assigned credential name (1-100 characters)
StatusBodyCondition
204emptyCredential was registered
400error responseThe challenge or attestation failed and the request returns INVALID_WEBAUTHN_CREDENTIAL, the public key returns INVALID_WEBAUTHN_PUBLIC_KEY_FORMAT, the signature counter returns INVALID_WEBAUTHN_CREDENTIAL_COUNTER, or the limit returns WEBAUTHN_CREDENTIAL_LIMIT_REACHED
403error responseThe account email is unverified and the request returns MFA_EMAIL_VERIFICATION_REQUIRED

The credential is added to the account. When it is the account’s first WebAuthn credential, the WebAuthn authenticator type is also applied to every bot account owned by the user.

WebAuthn Credentials Update reaches the user’s sessions with the complete current credential summaries. When the authenticator types changed, User Update also reaches the user and each affected owned bot.

10 requests per minute for each authenticated user, on the mfa:webauthn:register bucket.

PATCH/v1/users/@me/mfa/webauthn/credentials/{credential_id}MFA

Changes the user-assigned name of one WebAuthn credential owned by the current account and returns 204 with an empty body. Sudo mode is required. Emits a WebAuthn Credentials Update Gateway event.

A verified email is not required.

FieldTypeDescription
credential_idstringBase64url credential ID registered to the current account (1-2048 characters)

The body extends the sudo verification object with the field below, and an existing sudo proof travels in the X-Fluxer-Sudo-Mode-JWT request header.

FieldTypeDescription
namestringReplacement credential name (1-100 characters)
StatusBodyCondition
204emptyCredential was renamed
403error responseSudo mode was not proven and the request returns SUDO_MODE_REQUIRED
404error responseThe credential is not registered to the current account, returning UNKNOWN_WEBAUTHN_CREDENTIAL

The credential name is replaced and no authenticator type changes. WebAuthn Credentials Update reaches the current user’s sessions with the complete current credential summaries.

20 requests per 10 seconds for each authenticated user, on the mfa:webauthn:update bucket.

DELETE/v1/users/@me/mfa/webauthn/credentials/{credential_id}MFA

Deletes one WebAuthn credential owned by the current account and returns 204 with an empty body. Sudo mode is required. Emits a WebAuthn Credentials Update Gateway event, and a User Update event when this was the account’s final WebAuthn credential.

A verified email is not required.

FieldTypeDescription
credential_idstringBase64url credential ID registered to the current account (1-2048 characters)

The body is a sudo verification object. An existing sudo proof travels in the X-Fluxer-Sudo-Mode-JWT request header.

StatusBodyCondition
204emptyCredential was deleted
403error responseSudo mode was not proven and the request returns SUDO_MODE_REQUIRED
404error responseThe credential is not registered to the current account, returning UNKNOWN_WEBAUTHN_CREDENTIAL

The credential is deleted. When it was the final one, the WebAuthn authenticator type is also removed from every bot account owned by the user.

WebAuthn Credentials Update reaches the user’s sessions with the remaining credential summaries. When the authenticator types changed, User Update also reaches the user and each affected owned bot.

10 requests per minute for each authenticated user, on the mfa:webauthn:delete bucket.

GET/v1/users/@me/sudo/mfa-methods

Returns a sudo MFA methods object describing which sudo challenges the current account can answer. Sudo mode is not required.

StatusBodyCondition
200sudo MFA methods objectAvailable methods were returned

20 requests per minute for each authenticated user, on the sudo:mfa:methods bucket.

Create sudo WebAuthn authentication options

Section titled “Create sudo WebAuthn authentication options”
POST/v1/users/@me/sudo/webauthn/authentication-options

Creates a one-use sudo challenge and returns a WebAuthn authentication options object listing every credential registered to the current account.

The account needs at least one registered WebAuthn credential. Sudo mode is not required to obtain the challenge.

StatusBodyCondition
200WebAuthn authentication options objectChallenge and options were issued
400error responseNo WebAuthn credential is registered and the request returns NO_PASSKEYS_REGISTERED

Fluxer issues a sudo challenge for the current user. It expires after five minutes and can be redeemed once by submitting it as webauthn_challenge alongside webauthn_response in a sudo verification object.

10 requests per minute for each authenticated user, on the sudo:webauthn:options bucket.