Start passkey authentication for a pending login
const url = 'https://api.aetherpush.com/v1/auth/mfa/challenge';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"pendingToken":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.aetherpush.com/v1/auth/mfa/challenge \ --header 'Content-Type: application/json' \ --data '{ "pendingToken": "example" }'Exchanges a pending login token (from a mfaRequired login response)
for WebAuthn authentication options. Each call invalidates any prior
unconsumed authentication challenge for the account. Does not count
against the pending login’s five-attempt budget; only verification
calls do. Rate limited like login: 5 failed attempts per client
address per 15 minutes.
Request Bodyrequired
Section titled “Request Bodyrequired”object
Examplegenerated
{ "pendingToken": "example"}Responses
Section titled “Responses”WebAuthn authentication options to pass to the browser.
object
WebAuthn PublicKeyCredentialRequestOptionsJSON, as produced by
SimpleWebAuthn’s generateAuthenticationOptions(). Pass it to
startAuthentication() from @simplewebauthn/browser.
object
Examplegenerated
{ "options": {}}Pending token missing, or the account has no passkeys.
object
Human-readable error message.
Unique identifier for the request, also exposed as the X-Request-Id response header.
Example
{ "error": "The requested resource was not found.", "requestId": "req_abc123"}The pending login is invalid, consumed, or expired.
object
Human-readable error message.
Unique identifier for the request, also exposed as the X-Request-Id response header.
Example
{ "error": "The requested resource was not found.", "requestId": "req_abc123"}Too many MFA attempts.
Returned with HTTP 429 when an endpoint-specific rate limit is hit.
retryAfterSeconds indicates how long the client should wait
before retrying.
object
Example
{ "error": "Too many login attempts. Please try again later.", "retryAfterSeconds": 900, "requestId": "req_abc123"}Passkeys are not configured on this server.
object
Human-readable error message.
Unique identifier for the request, also exposed as the X-Request-Id response header.
Example
{ "error": "The requested resource was not found.", "requestId": "req_abc123"}