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 Jamieinbox
Jamieinbox

Jamieinbox

Getting noticed

Member since Apr 7, 2020

‎08-10-2023
Kudos from
User Count
EREAFSN
EREAFSN
1
MeredithW
Community Manager MeredithW
3
Network-dad
Network-dad
2
QBM
QBM
1
Adam-Baxter
Adam-Baxter
3
View All
Kudos given to
User Count
PatWruk
PatWruk
1
John-K
Meraki Employee John-K
3
KRobert
KRobert
1
Larry_Woods
Meraki Employee Larry_Woods
1
jbright
jbright
2
View All

Community Record

29
Posts
15
Kudos
0
Solutions

Badges

25 Posts
First 5 Posts
First 10 Kudos
Lift-Off
Points Contest - Apr 2020 View All
Latest Contributions by Jamieinbox
  • Topics Jamieinbox has Participated In
  • Latest Contributions by Jamieinbox

Re: Code Response Comes Up in Browser, not so with Python Code

by Jamieinbox in Developers & APIs
‎08-09-2023 03:25 PM
‎08-09-2023 03:25 PM
Ah... I thought because I was in API v 1 I was safe, further drilling in per pic below, I see it- and now know the significance. Thanks for assistance, was super confused as it was coming up in the browser.     ... View more

Re: Code Response Comes Up in Browser, not so with Python Code

by Jamieinbox in Developers & APIs
‎08-09-2023 03:01 PM
‎08-09-2023 03:01 PM
Well arguing with myself. I can still pull this data up through a browser, just not into a terminal with code. Still this... Doesn't make sense...   ... View more

Re: Code Response Comes Up in Browser, not so with Python Code

by Jamieinbox in Developers & APIs
‎08-09-2023 02:42 PM
‎08-09-2023 02:42 PM
Thinking again, I was trying to crack this API before I saw anything posted on v3.   ... View more

Re: Code Response Comes Up in Browser, not so with Python Code

by Jamieinbox in Developers & APIs
‎08-09-2023 02:41 PM
‎08-09-2023 02:41 PM
Thank you! I have the code here, below, too- as all the formatting was dropped. I was able to pull stats on connections, and I am comparing the code now. If anything I think I am missing parameters, something with a Rest call. My hunch... but maybe I don't have EA... jadexing/Merakicode: Code for Meraki Wi-Fi (github.com) Here's the code I was able to get working (with some others posted) Merakicode/LatencyStats at main · jadexing/Merakicode (github.com) ... View more

Re: Code Response Comes Up in Browser, not so with Python Code

by Jamieinbox in Developers & APIs
‎08-09-2023 02:03 PM
‎08-09-2023 02:03 PM
Thank you for the response. EA, "Enterprise Agreement?" I think so, as we are licensed? I am able to do things like pull Networks, and the APs within networks in a nice little list. Just not getting anywhere with this pull. Or, when I do, the shell of the data is there- with MAC, but none of the score info. Thank you again for your thoughts. ... View more

Code Response Comes Up in Browser, not so with Python Code

by Jamieinbox in Developers & APIs
‎08-09-2023 01:39 PM
‎08-09-2023 01:39 PM
I am not a coder-Jedi, help is appreciated.   I run this code, I get this error (also tried with BASE_URL = 'https://api.meraki.com/api/v1/'): Http Error: 404 Client Error: Not Found for url: https://api.meraki.com/api/v1/networks/N_1111111111111111/wireless/clients/healthScores Why? - The data comes up in a web browser just fine.   & Thank you.   #Code here# import requests BASE_URL = 'https://n1234.meraki.com/api/v1/' def get_api_key(): return input("Enter your Meraki API key: ") def get_organizations(api_key): headers = { 'X-Cisco-Meraki-API-Key': api_key, } try: response = requests.get(BASE_URL + 'organizations', headers=headers) response.raise_for_status() return response.json() except requests.exceptions.RequestException as e: print(f"Error occurred during API call: {e}") return [] def display_organizations(organizations): print("Organizations:") for idx, org in enumerate(organizations, 1): print(f"{idx}. {org['name']} (ID: {org['id']})") print() def get_networks(api_key, org_id): headers = { 'X-Cisco-Meraki-API-Key': api_key, } try: response = requests.get(BASE_URL + f'organizations/{org_id}/networks', headers=headers) response.raise_for_status() return response.json() except requests.exceptions.RequestException as e: print(f"Error occurred during API call: {e}") return [] def display_networks(networks): print("Networks:") for idx, network in enumerate(networks, 1): print(f"{idx}. {network['name']} (ID: {network['id']})") def get_health_info(api_key, network_id): headers = { 'X-Cisco-Meraki-API-Key': api_key, 'Content-Type': 'application/json', # Add Content-Type header } url = BASE_URL + f'networks/{network_id}/wireless/clients/healthScores' response = requests.get(url, headers=headers) response.raise_for_status() return response.json() def main(): api_key = get_api_key() organizations = get_organizations(api_key) if organizations: if len(organizations) == 1: print(f"Only one organization available: {organizations[0]['name']} (ID: {organizations[0]['id']})") selected_org_id = organizations[0]['id'] else: display_organizations(organizations) org_choice = int(input("Please enter the number of your organization: ")) selected_org_id = organizations[org_choice - 1]['id'] networks = get_networks(api_key, selected_org_id) if networks: display_networks(networks) network_choice = int(input("Please enter the number of the network you want to check clients for: ")) selected_network_id = networks[network_choice - 1]['id'] health_info = get_health_info(api_key, selected_network_id) print("Network Health Information:") print(health_info) if __name__ == "__main__": main() ... View more

Re: Why does the Target Power not equal the Transmit Power?

by Jamieinbox in Wireless LAN
‎08-11-2022 02:10 PM
‎08-11-2022 02:10 PM
Thank you both for responses. I wanted to see how far the signal would go with open hallway and with a first set of offices with drywall  measuring at 5Ghz from 29, 25, 20, 15, 10, 5 & 1. Please see PDF for details. I'm not sure I understand the power chosen vs. output, but I saw something about having to wait to see the adjustment, as well. I changed the power, took note of the change, and walked.  ... View more

Why does the Target Power not equal the Transmit Power?

by Jamieinbox in Wireless LAN
‎08-11-2022 01:00 PM
‎08-11-2022 01:00 PM
Why should there be any difference here when hard coding (turning off auto power). Thanks in advance, Jamie ... View more

Re: Rise of the Dead Air Army

by Jamieinbox in Meraki Projects Gallery
‎06-21-2022 09:45 AM
‎06-21-2022 09:45 AM
This is one of the most awesome things I've EVER SEEN!! ... View more

Re: High Density Theatre Deployment

by Jamieinbox in Meraki Projects Gallery
‎06-21-2022 08:59 AM
‎06-21-2022 08:59 AM
Would love to know number details, too. ... View more

Re: Multi reboot device access point

by Jamieinbox in Wireless LAN
‎09-13-2021 03:06 PM
‎09-13-2021 03:06 PM
We also need something that shows us the uptime of an AP. So, for those of us with more than a few dozen APs in environment can have assistance with tracking. ... View more

Re: Multi reboot device access point

by Jamieinbox in Wireless LAN
‎05-13-2021 06:06 PM
‎05-13-2021 06:06 PM
Also, teams in large corporations do not always mean the Wi-Fi people have access to switches and vice-versa. This is a big limitation. ... View more

Re: Multi reboot device access point

by Jamieinbox in Wireless LAN
‎05-13-2021 06:04 PM
1 Kudo
‎05-13-2021 06:04 PM
1 Kudo
This really must be implemented. I do not find powering ports on and off to be effective because-  1) when they lose power, they often don't come back nicely. Red lights on the secondary indication lights. 2) when they lose power, on the switch, they sometimes go into rainbow land and have to be booted from the router to come back.   Thus, it's really not a good idea. Because taking power off and on at the switch in our experience introduces more problems.   Please please do a mulit-boot.  ... View more

Piper Button Beacons

by Jamieinbox in Wireless LAN
‎07-01-2020 01:05 PM
‎07-01-2020 01:05 PM
Hi, I have Piper BLE beacons in hand. It appears we cannot at this time see them from a heatmap without 3rd party vendor software. From my understanding, we should be able to see it in the list of Bluetooth beacons. I don't see the beacon in the list. On the button, it shows a: "Major" 4 digit number "Minor" 4 digit number -Not a MAC   I see nothing in the manufacturing list that shows, "Piper."   Has anyone done this by just using the common Meraki platform to tray tracking with a beacon thus an asset? The map would be nice, but the list would work okay.   Thanks, Jamie  ... View more

Re: We need a Wi-Fi count per tag/building

by Jamieinbox in Wireless LAN
‎07-01-2020 08:06 AM
‎07-01-2020 08:06 AM
This is excellent! I need to digest this a bit- but this is what's needed. I needed a bit of flexibility as I can get a report on a tag/building- but I really need one report summary (one page) for execs. I really appreciate your input! ... View more

Re: We need a Wi-Fi count per tag/building

by Jamieinbox in Wireless LAN
‎07-01-2020 08:01 AM
1 Kudo
‎07-01-2020 08:01 AM
1 Kudo
Thank you, this is perfect. I am also hoping that I can get this report, with all other tags in one daily emailed summary report. I made a "wish" for that feature.Thanks for replying, I appreciate it! ... View more

Re: We need a Wi-Fi count per tag/building

by Jamieinbox in Wireless LAN
‎06-30-2020 09:20 AM
1 Kudo
‎06-30-2020 09:20 AM
1 Kudo
Thank you- much appreciated! ... View more

We need a Wi-Fi count per tag/building

by Jamieinbox in Wireless LAN
‎06-30-2020 08:38 AM
1 Kudo
‎06-30-2020 08:38 AM
1 Kudo
The business ask is that we get a daily report on the number of Wi-Fi connections in our buildings that we have labeled with the building tag. I cannot find a way to get this report from the Meraki reporting engine. I understand there are DNA spaces, but we are not looking for anything really by means of analytics. Maybe someday, but more a capacity report for planning and use. And yes- they want at least the Wi-Fi vision of numbers for COVID. We aren't looking to do wayfinding or anything I would consider 2nd tier analysis.   Anyone have any idea of how to get this info. Reports from Meraki would be great- or if anyone has done this with the APIs...   Thanks in advance. Comments and thoughts most welcome- including... did ya read this part of the manual? 😄 ... View more

Re: Wireless: use createNetworkFloorplan API to upload maps of floors have ...

by Jamieinbox in Wireless LAN
‎04-20-2020 08:24 AM
‎04-20-2020 08:24 AM
Thank you conlinster for the explanation! This is helpful. ... View more

Re: Hello from Denver Colorado. Hoping to go API wild.

by Jamieinbox in Introduce Yourself!
‎04-16-2020 08:00 AM
‎04-16-2020 08:00 AM
Hi QLSteve, Thanks for leaving a note. I was looking into how to automate uploading maps. I've since learned a bit that it you do it traditionally/GUI you have to provide coordinates, and if you upload you have to provide coordinates-- so either way there's a lot of work (I'm looking at about 200 floors). And, you still have to provide the building map/overlay. So not finding a big advantage with the API there. Which- is okay.   I am now going to look into reporting as we have some decently good reporting with our current pair of classic Cisco/Airwave reporting. I need to see what I can do with our new Meraki. I imagine there may be API opportunities there. ... View more

Re: Wireless: use createNetworkFloorplan API to upload maps of floors have ...

by Jamieinbox in Wireless LAN
‎04-15-2020 08:23 AM
1 Kudo
‎04-15-2020 08:23 AM
1 Kudo
Thank you! ... View more

Re: Hello from Denver Colorado. Hoping to go API wild.

by Jamieinbox in Introduce Yourself!
‎04-15-2020 08:22 AM
3 Kudos
‎04-15-2020 08:22 AM
3 Kudos
Thank you SO much! I just nabbed my email out of the reply. -Jamie ... View more

Re: Wireless: use createNetworkFloorplan API to upload maps of floors have ...

by Jamieinbox in Developers & APIs
‎04-15-2020 08:20 AM
‎04-15-2020 08:20 AM
Edgar-VO, thanks for the reply. I've been working with the account reps. And we're thinking that because we have to place the image of the building over the map and work coordinates, all of which will be different- it may not buy us a whole lot to use the API over the GUI.   I like your comment about Postman... I can see how this could be powerful.   Since I don't think I am going to gain much with the maps, I am going to take a look at reporting. Currently we at large are still classic Cisco with Airwave to run reports that our CIO likes. I am going to take a gander at the reporting subject.   Again, thanks for the note- any other feedback you have is appreciated! -Jamie ... View more

Re: Hello from Denver Colorado. Hoping to go API wild.

by Jamieinbox in Introduce Yourself!
‎04-15-2020 08:07 AM
1 Kudo
‎04-15-2020 08:07 AM
1 Kudo
I am at home too. So very glad.   I don't see a way to private message here, so here's the email of my Cisco Meraki rep: Clint Russell (clirusse) <clirusse@cisco.com>   I have to say that the account team has been good in guiding me, but I feel like lot's of what we want to do hasn't really been mapped out yet. That's okay-- but there aren't any specific guides! Lol.    Give him a shout, he would rather meet with people live in the Englewood office- but maybe we can get something going in the meantime.   So nice to meet you. Hope to see you on the webex side.     ... View more

Re: Hello from Denver Colorado. Hoping to go API wild.

by Jamieinbox in Introduce Yourself!
‎04-15-2020 07:32 AM
‎04-15-2020 07:32 AM
Thank you! ... View more
Kudos from
User Count
EREAFSN
EREAFSN
1
MeredithW
Community Manager MeredithW
3
Network-dad
Network-dad
2
QBM
QBM
1
Adam-Baxter
Adam-Baxter
3
View All
Kudos given to
User Count
PatWruk
PatWruk
1
John-K
Meraki Employee John-K
3
KRobert
KRobert
1
Larry_Woods
Meraki Employee Larry_Woods
1
jbright
jbright
2
View All
My Top Kudoed Posts
Subject Kudos Views

Hello from Denver Colorado. Hoping to go API wild.

Introduce Yourself!
5 5300

Re: Hello from Denver Colorado. Hoping to go API wild.

Introduce Yourself!
3 5256

Re: Multi reboot device access point

Wireless LAN
1 7863

Re: We need a Wi-Fi count per tag/building

Wireless LAN
1 3299

Re: We need a Wi-Fi count per tag/building

Wireless LAN
1 3348
View All
Powered by Khoros
custom.footer.
  • Community Guidelines
  • Cisco Privacy
  • Khoros Privacy
  • Cookies
  • Terms of Use
© 2023 Meraki