Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt

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

You can disable rotation for each application using Dashboard or the .

Disable with the Dashboard

  1. From the Auth0 Dashboard, navigate to Applications > Applications and select the application you wish to configure.
  2. On the Settings tab, locate the Refresh Token Rotation section and disable the Allow Refresh Token Rotation toggle.
  3. Select Save Changes at the bottom of the screen.

Disable with the Management API

  1. Disable refresh token rotation for each application using the Management API:
  2. Configure the non-rotating refresh token settings as follows:
    PATCH /api/v2/clients/{client_id}
    {
       "refresh_token": {
         "rotation_type": "non-rotating",
         "expiration_type": "non-expiring"
       }
    }
    

Learn more