Hi, I am using the python merakiDashboardAPI and would like to set the custom user agent string when doing API-callls. I am following this guide: https://developer.cisco.com/meraki/api-v1/user-agents-overview/#formatting This are some parts of my code: dashboard = meraki.DashboardAPI(suppress_logging=True,output_log=False,print_console=False,caller="testing testing") admins=dashboard.organizations.getOrganizationAdmins(organizationId=merakiOrgID) ..... apiCalls=dashboard.organizations.getOrganizationApiRequests(organizationId=merakiOrgID) When I look into the "apiCalls"-variable I see in the userAgent-field a very long string, like this: python-meraki/1.42.0 %7B%22implementation%22%3A%20%7B%22name%22%3A%20%22CPython%22%2C%20%22version%22%3A%20%223.10.12%22%7D%2C%20%22system%22%3A%20%7B%22name%22%3A%20%22Linux%22%2C%20%22release%22%3A%20%226.5.0-35-generic%22%7D%2C%20%22cpu%22%3A%20%22x86_64%22%2C%20%22caller%22%3A%20%22getApiUsage/1.0%20testing%22%7D I would expect, to see only "testing". What do I do wrong? Or, is this the normal output? Greetings Juergen
... View more