Skip to main content
from intuned_runtime import get_auth_session_parameters

async def get_auth_session_parameters() -> Any: ...
Returns the parameters used to create the current AuthSession. Use this to access credentials or configuration values that were provided when the AuthSession was created. This function only works with Credentials-based AuthSessions. It allows your automation to access the original parameters (like usernames, API keys, or other identifiers) without hardcoding them. Returns Returns Any — The parameters object used to create the AuthSession. Raises
  • Error — Raised if the project doesn’t use AuthSessions.
  • Error — Raised if the AuthSession is Recorder-based (not Credentials-based).
  • Error — Raised if the AuthSession is Runtime-based.
  • AuthSessions — Learn about authentication session management.