The Meraki Community
Register or Sign in
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • About Mihail
Mihail

Mihail

Meraki Employee

Member since Jan 26, 2018

‎04-27-2022
Groups
  • API Early Access Group

    API Early Access Group

    485
View All
Kudos from
User Count
PhilipDAth
Kind of a big deal PhilipDAth
2
View All
Kudos given to
User Count
PhilipDAth
Kind of a big deal PhilipDAth
3
Mr_IT_Guy
Mr_IT_Guy
1
View All

Community Record

16
Posts
8
Kudos
0
Solutions

Badges

Meraki Champion
CMNA
1st Birthday
First 5 Posts
Lift-Off View All
Latest Contributions by Mihail
  • Topics Mihail has Participated In
  • Latest Contributions by Mihail

Re: 🔥 Register Today! API Webinar: No-Code Integrations: Google Sheets, AP...

by Meraki Employee Mihail in Developers & APIs
‎04-21-2022 07:24 AM
‎04-21-2022 07:24 AM
Hi!   It is called " MerakiBot ". It should be searchable in the Webex application with that name.   Does it show up in your search results? ... View more

Re: Python error attempting rto execute manageadmins.py

by Meraki Employee Mihail in Developers & APIs
‎11-08-2021 05:53 AM
2 Kudos
‎11-08-2021 05:53 AM
2 Kudos
I managed to replicate your issue by installing Python 3.10.0 on a Windows computer that already had Python 3.9.5 installed.   I successfully fixed it with the following steps: * Go to Control Panel > Programs and features and remove all versions of Python, as well as the Python launcher * Open C:\ in File explorer and remove all PythonXX-XX folders * Go to Control panel > System > Advanced > Environment variables and remove everything Python related from Path * Do a clean installation of Python 3.10.0 (I selected the "Add to environment variables" option) * Install requests via pip * Run the script as normal. It should now work ... View more

Re: MS switches and NDI from NewTek

by Meraki Employee Mihail in Switching
‎02-01-2021 05:04 AM
‎02-01-2021 05:04 AM
I have been using NDI for live streaming sports interviews. My LAN setup is: iPhone 8, using the NDIcam app > MR52 > MS220-8P > Lenovo streamer laptop   The limiting factor of course in this setup is the distance from where the interview takes place to my MR52, so I have not really pushed the boundaries in terms of bandwidth, as I'm running live streams and don't want surprises. 🙂   All in all, my experience has been very positive. You can see an example of video transmitted over NDI here: https://youtu.be/VFm7SgHJ1uo?t=14677 ... View more

Re: Meraki API - Update the policy assigned to a client on the network not ...

by Meraki Employee Mihail in Developers & APIs
‎04-04-2018 12:10 AM
‎04-04-2018 12:10 AM
You can set the group policy of a client by using this call: https://dashboard.meraki.com/api_docs#update-the-policy-assigned-to-a-client-on-the-network You will need to pass the groupPolicyId of the policy you want to activate as JSON body.   Postman proposes this as Python 3 code to do it:  import http.client conn = http.client.HTTPConnection("api,meraki,com") payload = "{\n \"groupPolicyId\": 102\n}" headers = { 'X-Cisco-Meraki-API-Key': {{apiKey}}, 'Content-Type': "application/json" } conn.request("PUT", "api,v0,networks,{{networkId}},clients,{{clientMac}},policy", payload, headers) res = conn.getresponse() data = res.read() print(data.decode("utf-8")) The example above assumes you want to activate a Group Policy with ID 102. Substitute {{apiKey}}, {{networkId}} and  {{clientMac}} for actual values in your organization.   Even better, you could use the Meraki Python module to do it: https://github.com/meraki/dashboard-api-python The correct call in the module is:   meraki.updateclientpolicy(apikey, networkid, clientmac, policy, policyid=None, suppressprint=False)   You can find the groupPolicyId of your policy by listing the Group Policies available in your Network:  https://dashboard.meraki.com/api_docs#list-the-group-policies-in-a-network   Hope this helps.   ... View more
Kudos from
User Count
PhilipDAth
Kind of a big deal PhilipDAth
2
View All
Kudos given to
User Count
PhilipDAth
Kind of a big deal PhilipDAth
3
Mr_IT_Guy
Mr_IT_Guy
1
View All
My Top Kudoed Posts
Subject Kudos Views

Re: Python error attempting rto execute manageadmins.py

Developers & APIs
2 554
View All
custom.footer.
  • Community Guidelines
  • Cisco Privacy
  • Khoros Privacy
  • Privacy Settings
  • Terms of Use
© 2022 Meraki