<?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[How to Resolve &#x27;Your Account Has Expired&#x27; Errors in FusionAuth]]></title><description><![CDATA[<p dir="auto">We are trying to authorize a user, but when attempting to log in using their credentials, we receive the error message: "Your account has expired." Additionally, we are unable to reset the account expiry date through the FusionAuth portal's user page.</p>
<p dir="auto">How can we extend the user's account expiry date?</p>
]]></description><link>https://fusionauth.io/community/forum/topic/2972/how-to-resolve-your-account-has-expired-errors-in-fusionauth</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 08:20:16 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/topic/2972.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 29 Jun 2025 16:01:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to Resolve &#x27;Your Account Has Expired&#x27; Errors in FusionAuth on Sun, 29 Jun 2025 16:02:07 GMT]]></title><description><![CDATA[<p dir="auto">To update or extend a user’s account expiry date, you can use the FusionAuth User API to modify the <strong>expiry</strong> field. You can either set a new expiration date or set the field to <strong>null</strong> to remove the expiry entirely.</p>
<p dir="auto">Here’s an example of a <strong>PATCH</strong> request to update this field:</p>
<pre><code>curl --request PATCH \
  --url https://local.fusionauth.io/api/user/42661043-9ab8-4bb8-8778-85217aa05086 \
  --header 'Authorization: TulwCDDOmOtvXAVTsRUI4LfSWlF-Bd78uTnQhgviMQG9a1a3Qn7emwBn' \
  --header 'Content-Type: application/json' \
  --header 'X-FusionAuth-TenantId: 30665132-6767-6665-3132-323466613934' \
  --data '{
    "user": {
      "expiry": null
    }
  }'
</code></pre>
<p dir="auto">Explanation:<br />
Replace the URL, user ID, and tenant ID with your instance's values.<br />
Setting <strong>"expiry": null</strong> removes the expiration date and reactivates the user account.<br />
This should resolve the issue and allow the user to log in again.</p>
]]></description><link>https://fusionauth.io/community/forum/post/8149</link><guid isPermaLink="true">https://fusionauth.io/community/forum/post/8149</guid><dc:creator><![CDATA[wesley]]></dc:creator><pubDate>Sun, 29 Jun 2025 16:02:07 GMT</pubDate></item></channel></rss>