Hi all, I've been running basic API calls through Windows WSL environment for a few years now and haven't run in to any problems other than my poor syntax at times. I've created Networks, claimed APs and performed many updates through API calls in that time. Regular Ubuntu apt updates have been performed along with meraki API to stay up to date with no impact on my ability to make calls. As of about two days ago I'm suddenly being thrown the error shown below when performing even the most basic call to getOrganizations (meraki -k <KEY> organizations getOrganizations). I've reinstalled Ubuntu WSL environment & generated a new API key but the issue has persisted, I can't find anything specific to this error online either. I did check out the User Agents guide linked but I got a bit lost! I'm very high-level when it comes to troubleshooting this particular stuff so any pointers in the right direction are greatly appreciated! Current installed Python is v3.12.3 Traceback (most recent call last): File "/home/<MYUSER>/.local/bin/meraki", line 8, in <module> sys.exit(main()) ^^^^^^ File "/home/<MYUSER>/.local/share/pipx/venvs/meraki-cli/lib/python3.12/site-packages/meraki_cli/__main__.py", line 1249, in main api = meraki.DashboardAPI(args.apiKey, suppress_logging=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/<MYUSER>/.local/share/pipx/venvs/meraki-cli/lib/python3.12/site-packages/meraki/__init__.py", line 151, in __init__ self._session = RestSession( ^^^^^^^^^^^^ File "/home/<MYUSER>/.local/share/pipx/venvs/meraki-cli/lib/python3.12/site-packages/meraki/rest_session.py", line 159, in __init__ 'User-Agent': f'python-meraki/{self._version} ' + validate_user_agent(self._be_geo_id, self._caller), ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/<MYUSER>/.local/share/pipx/venvs/meraki-cli/lib/python3.12/site-packages/meraki/common.py", line 43, in validate_user_agent raise SessionInputError("MERAKI_PTYHON_SDK_CALLER", caller, message, doc_link) meraki.exceptions.SessionInputError: Please follow the user agent format prescribed in our User Agents guide, available here: https://developer.cisco.com/meraki/api-v1/user-agents-overview/
... View more