<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Q&amp;A]]></title><description><![CDATA[You&#x27;ve got questions? We&#x27;ve got answers. ]]></description><link>https://fusionauth.io/community/forum/category/6</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 08:45:37 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/category/6.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 03 Sep 2026 22:56:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[What are the use cases for the user.data.email field?]]></title><description><![CDATA[<p dir="auto">It is useful in a few scenarios.</p>

When you have users that share an email address, but are in the same tenant and have distinct accounts. FusionAuth enforces uniqueness on user.email per-tenant.
When your users have a username (such as an account number) as a main unique identifier, but need self-service account recovery.
When you have duplicate email addresses in a legacy system and are migrating them to FusionAuth, whether they point to the same account or not. You can move the users over and address email updates or account merges later.

<p dir="auto">Not all email related functionality is available when using user.data.email, but common workflows like forgot password are.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3143/what-are-the-use-cases-for-the-user-data-email-field</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3143/what-are-the-use-cases-for-the-user-data-email-field</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Thu, 03 Sep 2026 22:56:30 GMT</pubDate></item><item><title><![CDATA[What are FusionAuth entities good for?]]></title><description><![CDATA[<p dir="auto">Entities are one of the most flexible parts of FusionAuth and can be used to represent links and/or permissions between domain objects and users.</p>
<p dir="auto">Entity types are like classes in an object-oriented programming language, which define the permissions that an entity can have.</p>
<p dir="auto">Entities are similar to objects, in that they are an instantiation of an entity type. No behavior though, and no inheritance.</p>
<p dir="auto">Entities are connected to users and other entities via grants. You can think of this setting up a directed permission graph that can be traced.</p>
<p dir="auto">0 to N permissions are attached to each grant.</p>
<p dir="auto">There are three major uses for entities:</p>

the client credentials grant (agentic, machine to machine or service account authentication)
building limited fine grain authentication (FGA-ish) systems that don't need full ReBAC, but do want to use a permission graph or dynamically add and remove permissions
modelling permissions on something you don't log into

<p dir="auto">A few notes about entities:</p>

you'll want to get familiar with the API or the client libraries; entities are managed in code. Both in creating the graph and reading it from your application.
each entity has a data field which can handle arbitrary JSON and is searchable
the graph can be cyclic if you make bidirectional grants between entities. Users cannot accept grants, they can only be granted permissions to entities.
if you need full ReBAC or ABAC, you want FusionAuth FGA. More functionality, including automatic relationship graph traversal. The downside is you have to sync data and run a separate service.

]]></description><link>https://fusionauth.io/community/forum/topic/3142/what-are-fusionauth-entities-good-for</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3142/what-are-fusionauth-entities-good-for</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Thu, 03 Sep 2026 22:40:18 GMT</pubDate></item><item><title><![CDATA[Update on supporting discoverable WebAuthn credentials]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3594">@njanaskie</a> I don't have any experience with that flow. Hopefully someone that may have had some experience with this can chime in.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3141/update-on-supporting-discoverable-webauthn-credentials</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3141/update-on-supporting-discoverable-webauthn-credentials</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Fri, 14 Aug 2026 01:18:36 GMT</pubDate></item><item><title><![CDATA[Email MFA Timeout]]></title><description><![CDATA[<p dir="auto">You want to modify the Two-Factor Login duration in the Tenant Settings, which applies across to SMS and MFA methods.</p>
<p dir="auto"><a href="https://fusionauth.io/docs/get-started/core-concepts/tenants#advanced" rel="nofollow ugc">https://fusionauth.io/docs/get-started/core-concepts/tenants#advanced</a> has more details.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3140/email-mfa-timeout</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3140/email-mfa-timeout</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Mon, 27 Jul 2026 20:40:52 GMT</pubDate></item><item><title><![CDATA[How do I allow access to FusionAuth using agents?]]></title><description><![CDATA[<p dir="auto">Here are two scenarios for using the FusionAuth <a href="https://fusionauth.io/docs/get-started/download-and-install/development/mcp-server" rel="nofollow ugc">API MCP Server</a>, which is an MCP server that connects over STDIO and can be used to configure a FusionAuth instance.</p>

Local development — letting an agent configure FusionAuth and recording the steps for later automation
Production read-only — using an agent to safely query a production instance

<p dir="auto">⚠ Preview Warning: The FusionAuth MCP server is a preview release and may break, change, or be discontinued. It is intended for development and test instances. Never give an MCP client unrestricted access to a production instance.</p>
Prerequisites

A running FusionAuth instance (local or remote)
Node.js installed
An MCP-compatible client (e.g., Claude Desktop)

Scenario 1: Local Development
<p dir="auto">This lets you configure FusionAuth and record steps to apply to other instances.</p>

Create a read-write API key. In your local FusionAuth instance, <a href="https://fusionauth.io/docs/apis/authentication#managing-api-keys" rel="nofollow ugc">create an API key</a> with the permissions you need. For full configuration work, you may want broad permissions, but always follow the principle of least privilege — for example, if you're only working with applications and themes, grant only those permissions.
Configure your MCP client. For Claude Desktop on macOS, edit ~/Library/Application Support/Claude/claude_desktop_config.json to add the FusionAuth MCP server. Since you want full configuration access, omit the USE_TOOLS restriction (note: you'll need a model that can handle ~200k tokens):

{
  "mcpServers": {
    "fusionauth-mcp-api": {
      "command": "npx",
      "args": [
        "@fusionauth/mcp-api"
      ],
      "env": {
        "API_KEY_APIKEYAUTH": "&lt;your-read-write-api-key&gt;",
        "API_BASE_URL": "http://localhost:9011"
      }
    }
  }
}

<p dir="auto">Restart Claude Desktop after saving.</p>

Verify the connection. Open Claude Desktop and ask:

<p dir="auto">"Which tools do you have access to?"</p>
<p dir="auto">You should see a list of all FusionAuth API tools (300+).</p>

Configure FusionAuth using natural language. Now you can describe what you want in plain English. For example:

<p dir="auto">"Set up a custom registration form for the Pied Piper application. Require email address and password, but allow first name and favorite color to be optional. Put them all on one page."</p>
<p dir="auto">Or:</p>
<p dir="auto">"Add a user with an email address of test@example.com and a password of password."</p>
<p dir="auto">The agent will make the appropriate API calls on your behalf.</p>

Export your configuration for automation. Once you've configured things the way you want, ask the agent to export the configuration so you can turn it into repeatable scripts:

<p dir="auto">"Please export the configuration for the Pied Piper application to a kickstart file."</p>
<p dir="auto">"Export the current tenant configuration as a Terraform file."</p>
<p dir="auto">This gives you a reproducible artifact you can commit to source control or use in CI/CD pipelines.</p>
<p dir="auto">You can reduce tool scope. If you only need to work with specific operations (e.g., no deletes), you can reduce the tool list to improve performance and limit risk:</p>
"env": {
  "API_KEY_APIKEYAUTH": "&lt;your-api-key&gt;",
  "API_BASE_URL": "http://localhost:9011",
  "USE_TOOLS": "create,update,retrieve,search,other"
}

<p dir="auto">This omits the delete APIs and reduces the tool list by ~20%.</p>
Scenario 2: Production Read-Only Queries with an Agent
<p dir="auto">The security model of this approach consists of three layers: the instance you connect to, the tool categories you expose, and the permissions on the API key itself. Combining a read-only API key with USE_TOOLS="retrieve,search" gives you defense in depth for production queries.</p>

Create a read-only API key. In your production FusionAuth instance, create an API key scoped to read-only operations only. This is the most important security step — the API key defines the ceiling of what the agent can do.
Configure your MCP client with read-only tools. Edit your MCP client config to point at your production instance and restrict tools to retrieve and search only:

{
  "mcpServers": {
    "fusionauth-mcp-api-prod": {
      "command": "npx",
      "args": [
        "@fusionauth/mcp-api"
      ],
      "env": {
        "API_KEY_APIKEYAUTH": "&lt;your-read-only-api-key&gt;",
        "API_BASE_URL": "https://your-production-fusionauth-instance.com",
        "USE_TOOLS": "retrieve,search"
      }
    }
  }
}

<p dir="auto">Setting USE_TOOLS="retrieve,search" reduces the tool list by 66% and ensures the agent cannot create, update, patch, or delete anything. This is a second layer of defense.</p>

Verify read-only access. Ask the agent:

<p dir="auto">"Which tools do you have access to?"</p>
<p dir="auto">Confirm that only retrieve and search tools are listed — no create, update, delete, or patch tools should appear.</p>


<p dir="auto">Query production data. You can now safely ask questions like:</p>

"Is PKCE enforced for all my applications?"
"How many users do I have in my FusionAuth instance?"
"How many FusionAuth applications do I have?"



<p dir="auto">The agent will use the read-only API tools to answer your questions without modifying anything.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3138/how-do-i-allow-access-to-fusionauth-using-agents</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3138/how-do-i-allow-access-to-fusionauth-using-agents</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Tue, 07 Jul 2026 13:07:43 GMT</pubDate></item><item><title><![CDATA[Unable to Reset Locked Account Password when MFA Enabled]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3839">@anthea-mo</a> It looks like the <a href="https://github.com/FusionAuth/fusionauth-issues/issues/1909" rel="nofollow ugc">fix</a> is to upgrade.</p>
<p dir="auto">I also found <a href="https://github.com/FusionAuth/fusionauth-issues/issues/383" rel="nofollow ugc">this</a> on the users accounts being locked.</p>
<p dir="auto">If this information does not get you where you need, please let me know.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3136/unable-to-reset-locked-account-password-when-mfa-enabled</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3136/unable-to-reset-locked-account-password-when-mfa-enabled</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Fri, 12 Jun 2026 20:28:34 GMT</pubDate></item><item><title><![CDATA[Disable login to an application without deleting it]]></title><description><![CDATA[<p dir="auto">You have a couple of options.</p>

If you use the hosted login pages/authorization code grant, disabling all grants in the application settings page will prevent people from logging in.
If you use the login API and have customer-based API keys, you could turn on the 'require API key for login API' and then disable the customer's API key.
If you have the Enterprise plan, you could set up an <a href="https://fusionauth.io/docs/operate/secure/advanced-threat-detection#ip-access-control-lists" rel="nofollow ugc">IP ACL</a> for a unroutable IP range.

<p dir="auto">However, the easiest way to make sure an application cannot be logged into is to deactivate the application.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3135/disable-login-to-an-application-without-deleting-it</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3135/disable-login-to-an-application-without-deleting-it</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Mon, 08 Jun 2026 19:49:13 GMT</pubDate></item><item><title><![CDATA[What is list state in email template and where it comes from?]]></title><description><![CDATA[<p dir="auto">My understanding is that state is a map of parameters passed into the template context by FusionAuth, not something you explicitly define in the template itself. If that snippet works even though you can't find a local declaration, it's likely being injected by the email rendering process. Have you checked the template variable documentation or tried outputting the contents of state to see which keys are actually available at runtime?</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3134/what-is-list-state-in-email-template-and-where-it-comes-from</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3134/what-is-list-state-in-email-template-and-where-it-comes-from</guid><dc:creator><![CDATA[wordletter144]]></dc:creator><pubDate>Mon, 25 May 2026 07:57:20 GMT</pubDate></item><item><title><![CDATA[What are account recovery options with FusionAuth?]]></title><description><![CDATA[<p dir="auto">Lots of options!</p>

Self-service password recovery — SMS or Email based forgot password flows out of the box, with hosted pages that require no custom UI. If a user's login ID is a phone number, the reset is delivered via SMS automatically.
API-driven recovery — The full forgot password flow is triggerable via POST /api/user/forgot-password with an email, phone, or username as the login ID, giving teams complete control over the UI and recovery experience.
Admin and support-assisted recovery — Support staff can trigger resets or force password changes directly from the admin UI, no email required.
Admins can also remove MFA methods directly from the user record.
MFA recovery — Recovery codes generated at MFA enrollment let users bypass a lost second factor.
Self-service MFA configuration — Users can add, remove, and manage their own MFA methods (TOTP, SMS, email) from a hosted self-service account page without any admin involvement. Removing a method requires completing an MFA challenge first, which prevents unauthorized removal. If an admin removes a user's MFA method and the tenant or application policy is set to Required, the user will be prompted to set up MFA again on next login.
Webhooks and event-driven recovery — FusionAuth fires events like user.login.failed and user.password.reset that your backend can listen to and act on, enabling custom recovery logic, audit trails, and downstream notifications.
Account linking and IdP recovery — For users who log in via a social or enterprise IdP, FusionAuth can be configured to link that identity to a FusionAuth user record. If the IdP connection is the issue, the user can still go through the standard forgot password flow as long as an phone number or email is on their account, so recovery isn't solely dependent on the IdP being available.

]]></description><link>https://fusionauth.io/community/forum/topic/3133/what-are-account-recovery-options-with-fusionauth</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3133/what-are-account-recovery-options-with-fusionauth</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Thu, 14 May 2026 02:57:38 GMT</pubDate></item><item><title><![CDATA[how can I get an exact number of users with some attributes?]]></title><description><![CDATA[<p dir="auto">You want to use search parameters like those outlined in <a href="https://github.com/FusionAuth/fusionauth-example-scripts/blob/main/full-user-search/countusers.sh" rel="nofollow ugc">this sample script</a>.</p>

use a key limited to POST on /api/user/search
set accurateTotal on the request
set numberOfResults to 1 on the request

<p dir="auto">In the response, look at the total field.</p>
<p dir="auto">This will let you get exact numbers while reducing load on your instance.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3132/how-can-i-get-an-exact-number-of-users-with-some-attributes</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3132/how-can-i-get-an-exact-number-of-users-with-some-attributes</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Mon, 11 May 2026 20:52:06 GMT</pubDate></item><item><title><![CDATA[Collect additional attributes at login after a user has been created and registered]]></title><description><![CDATA[<p dir="auto">Beginning in version 1.65.0, FusionAuth offers Complete Registration. <a href="https://fusionauth.io/docs/lifecycle/register-users/complete-registration" rel="nofollow ugc">Full docs here</a>.</p>
<p dir="auto">How this would work:</p>

enable a registration form for the application your users are logging into
select certain attributes as required. If you are using a basic form, you could select 'birth date'. If you are using an advanced form, you can select whatever profile attributes you need
set the Registration mode to Complete registration. This setting means that users cannot self-register, but can complete missing information from an existing registration.
save the application

<p dir="auto">Now, your admin user can create a user with a minimal amount of data (perhaps just an email address).</p>
<p dir="auto">The user will, at first login, be prompted to fill out their profile data, including all fields you've marked required.</p>
<p dir="auto">This is not full progressive registration, but can be useful in certain circumstances.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3130/collect-additional-attributes-at-login-after-a-user-has-been-created-and-registered</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3130/collect-additional-attributes-at-login-after-a-user-has-been-created-and-registered</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Mon, 11 May 2026 15:44:16 GMT</pubDate></item><item><title><![CDATA[offline access&#x2F;authentication]]></title><description><![CDATA[<p dir="auto">The cleanest way to do it is with asymmetric JWT verification plus a bounded offline grace period.** Here's the pattern.</p>
<p dir="auto">FusionAuth signs JWTs with a private key it holds. The matching public key is published at the JWKS endpoint (/.well-known/jwks.json). Your mobile app — or any resource server — can verify a token's signature locally, with zero network calls, as long as it has that public key. You can even bundle the public key with the application and avoid the retrieving it.</p>
<p dir="auto">That's the property that makes offline auth possible. You're not asking "is this token still good?" over the wire; you're asking "did FusionAuth sign this, and has it expired?" using math the device can do on its own.</p>
<p dir="auto">See <a href="https://fusionauth.io/docs/lifecycle/authenticate-users/login-api/json-web-tokens#configuring-jwt-signing" rel="nofollow ugc">JWT signing configuration</a> and the <a href="https://fusionauth.io/docs/lifecycle/authenticate-users/oauth/endpoints#json-web-key-set-jwks" rel="nofollow ugc">JWKS endpoint docs</a>.</p>
<p dir="auto"><strong>The Flow</strong></p>
<p dir="auto"><strong>1. First login (online, required).</strong> The user authenticates against FusionAuth via OAuth with the offline_access scope, or via the Login API with loginId + password + applicationId. You get back two things:</p>

A short-lived <strong>access token</strong> (signed JWT, RS256, EdDSA, or ES256)
A long-lived <strong>refresh token</strong> (opaque, default 30 days, configurable per tenant or application)

<p dir="auto">Refresh token details are in the <a href="https://fusionauth.io/docs/lifecycle/authenticate-users/login-api/json-web-tokens#refresh-token-settings" rel="nofollow ugc">refresh token settings docs</a>.</p>
<p dir="auto"><strong>2. Cache the JWKS on the device.</strong> Fetch /.well-known/jwks.json once and store it. You'll match incoming tokens to the right key using the kid in the JWT header. For fully air-gapped scenarios, you can bundle the JWKS into the app at build time — see <a href="https://fusionauth.io/blog/air-gapping#using-air-gapped-fusionauth" rel="nofollow ugc">the air-gapping article</a>.</p>
<p dir="auto"><strong>3. Online operation.</strong> The app uses the access token for API calls. When it expires, the app calls the <a href="https://fusionauth.io/docs/apis/jwt#refresh-a-jwt" rel="nofollow ugc">Refresh a JWT API</a> with the refresh token to mint a new access token.</p>
<p dir="auto"><strong>4. Offline operation.</strong> The app validates the cached access token locally:</p>

Find the key in the JWKS where kid matches the JWT header
Verify the signature with that public key
Check exp, iss, aud, and any custom claims you care about

<p dir="auto">If the token is past exp but the device is offline, allow a bounded grace period (e.g., 24 hours past expiration). After that, degrade functionality until the device reconnects and refreshes. For instance, you could allow read operations but nothing that changes data.</p>
<p dir="auto"><strong>5. On reconnect.</strong> Refresh immediately. If the refresh token has been revoked server-side, the call will fail and the user must re-authenticate.</p>
<p dir="auto"><strong>Token lifetime tuning</strong></p>
<p dir="auto">This is where you make your security/availability tradeoff explicit. FusionAuth lets you tune both lifetimes per tenant or per application:</p>

<strong>Access token TTL</strong> (ttl_seconds😞 set this short for online use (5–15 minutes is typical), but if you want longer offline windows without the grace-period workaround, you can extend it. Whatever you pick is the maximum revocation lag for compromised tokens.
<strong>Refresh token duration</strong>: default is ~30 days. Use a <strong>Sliding Window with Maximum Lifetime</strong> policy if you want active devices to keep working but inactive ones to expire automatically.
<strong>One-Time Use refresh tokens</strong>: rotates the token value on every refresh. Strongly recommended — if a refresh token is stolen and used, the legitimate device's next refresh will fail and the theft is detected.

<p dir="auto"><strong>What FusionAuth gives you for revocation</strong></p>
<p dir="auto">Refresh tokens can be revoked automatically on password change, MFA enrollment, or any action that prevents login. You can also call the <a href="https://fusionauth.io/docs/apis/jwt#revoke-refresh-tokens" rel="nofollow ugc">Revoke Refresh Tokens API</a> directly. The catch: revocation only takes effect the next time the device tries to refresh. Already-issued access tokens remain valid until their exp.</p>
<p dir="auto"><strong>Tradeoffs you're signing up for</strong></p>
<p dir="auto">Be honest with yourself about this approach. These aren't FusionAuth limitations, they're inherent to offline auth:</p>

<strong>Delayed revocation.</strong> A stolen device retains access until the access token expires and the offline grace period elapses. Shorter access token TTLs mean faster revocation but more refresh traffic and shorter offline windows. Pick where on that curve you want to sit.
<strong>Clock trust.</strong> Offline exp checks rely on the device clock, which the user controls. If that matters for your threat model, store a "last known server time" on each refresh and refuse to validate tokens if the clock has moved backward.
<strong>Stale claims.</strong> If a user's roles or permissions change, the old claims persist in the cached token until the next refresh. Acceptable for most apps, not for high-stakes authorization.
<strong>Local credential storage.</strong> If you want users to "log in" while offline (PIN/biometric to unlock the cached session), you're storing something derivable from their credential on the device. Use the platform secure storage (iOS Keychain, Android Keystore) and a slow KDF like Argon2id for any password-derived material.
<strong>Key rotation.</strong> If you bundle JWKS into the app, you have to ship app updates ahead of key rotations (or plan to create a bunch of keys ahead of time). If you fetch JWKS dynamically, you need a cache strategy and a fallback when the cache is stale and the network is down.
<strong>MFA degrades offline.</strong> Push and SMS-based factors require connectivity. Offline auth typically falls back to device-bound factors (the refresh token + a local PIN/biometric), which is different than your online MFA flow. Decide whether that's acceptable.

<p dir="auto"><strong>Practical starting point</strong></p>
<p dir="auto">Here's an example of the configuration:</p>

Access token TTL: <strong>15 minutes</strong>
Refresh token: <strong>30 days, sliding window, one-time use</strong>
Offline grace period (app-enforced): <strong>24 hours past exp</strong>
JWKS: fetched on first launch, refreshed weekly when online, with a bundled fallback
Mandatory online check-in: <strong>every 7 days</strong> (refuse to operate offline beyond this)

<p dir="auto">Tighten the numbers for higher-sensitivity apps, loosen them for field-work apps where availability matters more than instant revocation.</p>
<p dir="auto">Some further reading for you:</p>

<a href="https://fusionauth.io/articles/tokens/building-a-secure-jwt" rel="nofollow ugc">Building a Secure JWT</a>
<a href="https://fusionauth.io/articles/tokens/revoking-jwts" rel="nofollow ugc">Revoking JWTs</a>
<a href="https://fusionauth.io/docs/operate/secure/token-storage" rel="nofollow ugc">Token storage best practices</a>
<a href="https://fusionauth.io/blog/air-gapping" rel="nofollow ugc">Air-gapping FusionAuth</a>

<p dir="auto">The short version: FusionAuth gives you all the primitives:</p>

asymmetric signing
JWKS
configurable lifetimes
refresh token revocation

<p dir="auto">The offline policy is yours to design, and the design is mostly about choosing how much revocation lag you can tolerate in exchange for how much offline runway your users need.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3129/offline-access-authentication</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3129/offline-access-authentication</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Thu, 07 May 2026 14:48:25 GMT</pubDate></item><item><title><![CDATA[Adding custom url&#x2F;domain - downtime?]]></title><description><![CDATA[<p dir="auto">If you're unsure whether the hosted service validates immediately, I'd open a support ticket first since they'll be able to confirm the exact behavior for your version.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3127/adding-custom-url-domain-downtime</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3127/adding-custom-url-domain-downtime</guid><dc:creator><![CDATA[wordletter144]]></dc:creator><pubDate>Mon, 13 Apr 2026 16:38:59 GMT</pubDate></item><item><title><![CDATA[Forgot Password]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/426">@johnmiller</a> I'm not 100% sure but that may be by design. You don't want to give away too much information. If it returned a specific error code, then you would know if the user exists or not.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3115/forgot-password</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3115/forgot-password</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Thu, 09 Apr 2026 21:41:06 GMT</pubDate></item><item><title><![CDATA[Send custom query param to identity provider (screen_hint)]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/845">@elliotdickison</a> I'd probably try with two Identity Providers configurations in FusionAuth both pointing to the same remote IDP.</p>
<p dir="auto">One can have screen_hint=abc on the authorization URL and the other can have screen_hint=def, but both will have all the other parameters the same.</p>
<p dir="auto">Then you can use an idp_hint on your create or login buttons.</p>
<p dir="auto">I think that will work, but please let us know.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3106/send-custom-query-param-to-identity-provider-screen_hint</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3106/send-custom-query-param-to-identity-provider-screen_hint</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Mon, 06 Apr 2026 19:54:08 GMT</pubDate></item><item><title><![CDATA[Getting changes from theme updates]]></title><description><![CDATA[<p dir="auto">Because advanced themes are so customizable, they can be hard to upgrade. Here's some ways to make it easier.</p>

When you create a new theme, start from the default version. Commit it to git before you change anything.
Use the <a href="https://fusionauth.io/docs/customize/cli" rel="nofollow ugc">FusionAuth CLI</a> to download/upload your theme during development and CI/CD.
When a new theme comes out, clone or pull the latest from the <a href="https://github.com/FusionAuth/fusionauth-theme-history" rel="nofollow ugc">theme history</a> repo.
Run this command to see what has changed: git format-patch 1.61.0..1.64.1 --stdout &gt; update-themes.patch (this shows the changes between 1.61.0 and 1.64.1; adjust as needed for your installed version and the target version).
Go to your theme git repo and apply the changes: git am --3way update-themes.patch which will attempt to automatically merge the changes. If there are conflicts, you can resolve them manually and then run git am --continue.

<p dir="auto">You can also use a 3 way diffing tool like diff3 or kdiff3 to visualize the changes.</p>
<p dir="auto"><a href="https://fusionauth.io/docs/customize/look-and-feel/advanced-themes/upgrade" rel="nofollow ugc">These upgrade notes</a> also provide detailed human friendly instructions on the changes.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3105/getting-changes-from-theme-updates</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3105/getting-changes-from-theme-updates</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Mon, 06 Apr 2026 14:53:42 GMT</pubDate></item><item><title><![CDATA[Application is blank on the login records]]></title><description><![CDATA[<p dir="auto">There are a couple different scenarios where a login record could have a blank application Id. Usually it is #1 or #2. It occurs in scenarios where the user can have a JWT/access token that does not have the application Id in it.</p>

If a user is not registered for the Application they are logging into
FusionAuth makes a login record when a user is created since FA makes a JWT upon user creation
If you use the Login API, you can log in without an App ID because you don't have to provide an application on the API call.

]]></description><link>https://fusionauth.io/community/forum/topic/3104/application-is-blank-on-the-login-records</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3104/application-is-blank-on-the-login-records</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Fri, 27 Mar 2026 07:46:36 GMT</pubDate></item><item><title><![CDATA[Importing users over time]]></title><description><![CDATA[<p dir="auto">As of 1.69.0, you can now update the password hash using the <a href="https://fusionauth.io/docs/apis/users/update" rel="nofollow ugc">User API</a>.</p>
<p dir="auto">From the documentation, the passwordFieldType is the API field to use. This field:</p>
<blockquote>
<p dir="auto">Describes what user.password in the request is. The possible values are:</p>
<p dir="auto">HASHED - user.password is an already hashed value. When this value is supplied, user.encryptionScheme, user.factor, user.password, and user.salt are required.<br />
PLAINTEXT - user.password is a plain text/unhashed value. FusionAuth will hash this value according to user.encryptionScheme and user.factor.</p>
</blockquote>
]]></description><link>https://fusionauth.io/community/forum/topic/3100/importing-users-over-time</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3100/importing-users-over-time</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Wed, 11 Mar 2026 17:19:14 GMT</pubDate></item><item><title><![CDATA[The request origin could not be verified. Unable to complete this login request with same-instance cross-tenant IdP federation]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/2507">@mark-robustelli</a> you can stop thinking.. We decided to give up on sub-tenants and manage it all via applications now for a single tenant.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3099/the-request-origin-could-not-be-verified-unable-to-complete-this-login-request-with-same-instance-cross-tenant-idp-federation</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3099/the-request-origin-could-not-be-verified-unable-to-complete-this-login-request-with-same-instance-cross-tenant-idp-federation</guid><dc:creator><![CDATA[hvfa]]></dc:creator><pubDate>Fri, 06 Mar 2026 11:38:11 GMT</pubDate></item><item><title><![CDATA[Wanted to add a passkey prompt in my application]]></title><description><![CDATA[<p dir="auto">This is totally possible.</p>
<p dir="auto">You want to start by understanding <a href="https://fusionauth.io/docs/lifecycle/authenticate-users/passwordless/webauthn-passkeys" rel="nofollow ugc">FusionAuth passkey setup and the normal flow</a>.</p>
<p dir="auto">Then, in your application, probably using one of the <a href="https://fusionauth.io/docs/sdks/" rel="nofollow ugc">client libraries</a>, you want to do the following for a user:</p>

see if a user has a passkey set up, using the <a href="https://fusionauth.io/docs/apis/webauthn#retrieve-a-passkey" rel="nofollow ugc">"retrieve a passkey" API</a>. If this returns 0 passkeys, show the prompt.
for the prompt, you have two options:

use the <a href="https://fusionauth.io/docs/lifecycle/authenticate-users/passwordless/webauthn-passkeys#registration-2" rel="nofollow ugc">API/client library</a> to start the passkey registration process from within your application directly
send them to the <a href="https://fusionauth.io/docs/lifecycle/manage-users/account-management/add-webauthn#add-a-passkey-from-account-management-user-facing" rel="nofollow ugc">user management page to add a passkey</a> (requires a paid license)



<p dir="auto">The right way to do the latter depends on your application needs (are you okay with a redirect) and whether or not you have at least a starter license.</p>
<p dir="auto">For reporting on the number of users that have set up passkeys, unfortunately you have to query all your users and then pull the passkey data individually. There's no way to use the elasticsearch syntax to do the query as of yet. <a href="https://github.com/FusionAuth/fusionauth-issues/issues/3104" rel="nofollow ugc">There's an open github issue to add that functionality.</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/3098/wanted-to-add-a-passkey-prompt-in-my-application</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3098/wanted-to-add-a-passkey-prompt-in-my-application</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Wed, 04 Mar 2026 00:09:54 GMT</pubDate></item><item><title><![CDATA[Twillio Messenger]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3769">@rgros</a> Do you have Debug enabled?</p>
<p dir="auto">Screenshot 2026-02-18 at 10.43.14 AM.png</p>
<p dir="auto">Then you should check your Event Log.</p>
<p dir="auto">Screenshot 2026-02-18 at 10.44.20 AM.png</p>
<p dir="auto">Let us know what you find.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3095/twillio-messenger</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3095/twillio-messenger</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Tue, 17 Feb 2026 20:53:49 GMT</pubDate></item><item><title><![CDATA[&quot;A request to the search index has failed&quot; - OpenSearch(AWS)]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/2507">@mark-robustelli</a> Hi Mark,</p>
<p dir="auto">Apologies for the delayed response. We've done some detailed investigation and can share concrete data.</p>
<p dir="auto">Environment:</p>

FusionAuth 1.68.0
search.type=elasticsearch (per your docs, the correct setting for OpenSearch)
AWS-managed OpenSearch 2.19 (single t3.medium.search node)
This issue has persisted from at least version 1.55.1 (Dec 2025) through to current 1.68.0

<p dir="auto">What we observe:</p>
<p dir="auto">Our deletion job calls the bulk delete API once per user:</p>
<p dir="auto">DELETE /api/user/bulk?queryString=&lt;email&gt;&amp;hardDelete=true&amp;dryRun=false</p>
<p dir="auto">On a typical night, 70–210 of these calls are made in rapid succession. A subset fail with:</p>
<p dir="auto">ERROR io.fusionauth.api.service.search.BaseElasticsearchSearchEngine - Failed to set a Point in Time on index [fusionauth_user]</p>
<p dir="auto">The response our application receives:</p>
<p dir="auto">{<br />
"generalErrors": [{"code": "[SearchEngineRequestFailedException]", "message": "A request to the search index has failed. This error is unexpected. Please review the troubleshooting guide..."}],<br />
"status": 503<br />
}</p>
<p dir="auto">CloudWatch metrics from our OpenSearch domain at the exact moment of failure (29 Jul, 23:12 UTC):</p>
│ Metric                        │ Value                                           │
│ JVM memory pressure           │ 41%                                             │
│ CPU utilisation               │ 11%                                             │
│ Thread pool search rejections │ 0                                               │
│ Thread pool write rejections  │ 0                                               │
│ OpenSearch 5xx responses      │ 0                                               │
│ OpenSearch 4xx responses      │ elevated (spike correlates with deletion burst) │
│ HasUsedPointInTime            │ 0 (PIT never successfully created)              │
│ Request volume                │ ~1,130 in 60 seconds vs normal ~15/min     |    

<p dir="auto">The OpenSearch node is healthy and not under resource pressure. It appears to be actively rejecting the PIT creation request as a client error (4xx), not failing due to overload. The HasUsedPointInTime CloudWatch metric remains 0 throughout, confirming no PIT is ever successfully established.</p>
<p dir="auto">We don't have visibility into the raw 4xx response body from OpenSearch — FusionAuth wraps it in the generic SearchEngineRequestFailedException. Our OpenSearch application logs only capture JVM-level warnings, and audit logging isn't enabled.</p>
<p dir="auto">Questions:</p>

What PIT API endpoint does FusionAuth call internally when processing a queryString-based bulk delete? (e.g. POST /{index}/_pit vs POST /{index}/_search/point_in_time)
Is it possible to expose the underlying search engine error response in the SearchEngineRequestFailedException? That would help diagnose whether this is a request format issue, a permissions issue,<br />
or something else specific to AWS-managed OpenSearch.
Does FusionAuth use PIT when deleting by explicit userId array rather than queryString? If not, that might give us a workaround?

<p dir="auto">Thanks,<br />
Tim</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3094/a-request-to-the-search-index-has-failed-opensearch-aws</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3094/a-request-to-the-search-index-has-failed-opensearch-aws</guid><dc:creator><![CDATA[tim.clark]]></dc:creator><pubDate>Wed, 04 Feb 2026 11:09:58 GMT</pubDate></item><item><title><![CDATA[FusionAuth Cloud requests timing out continuously (admin UI + auth flows)]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3755">@hemanth18pages</a> raising the support ticket is the way to go for sure. It will be good to know if anyone else is experiencing this too.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3093/fusionauth-cloud-requests-timing-out-continuously-admin-ui-auth-flows</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3093/fusionauth-cloud-requests-timing-out-continuously-admin-ui-auth-flows</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Mon, 02 Feb 2026 11:17:06 GMT</pubDate></item><item><title><![CDATA[oauthConfiguration.clientSecret is missing on &#x2F;api&#x2F;application&#x2F;search response since 1.62.0]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3746">@simon-chrzanowski</a> can you please share the code you using?  (please be sure to hide anything sensitive like your API Key)</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3091/oauthconfiguration-clientsecret-is-missing-on-api-application-search-response-since-1-62-0</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3091/oauthconfiguration-clientsecret-is-missing-on-api-application-search-response-since-1-62-0</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Mon, 19 Jan 2026 12:09:40 GMT</pubDate></item><item><title><![CDATA[Pass value from API to webhook]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3738">@alexandros-nafas</a> , were you able to figure it out?</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3090/pass-value-from-api-to-webhook</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3090/pass-value-from-api-to-webhook</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Fri, 09 Jan 2026 17:51:37 GMT</pubDate></item></channel></rss>