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

chengineer

Meraki Alumni (Retired)

Member since Jan 1, 2018

‎11-23-2020

Shiyue (Shay) Cheng

San Francisco Bay Area

https://www.linkedin.com/in/shiyue/

Groups
  • API Early Access Group

    API Early Access Group

    545
View All
Kudos from
User Count
Meraki_Dave
Meraki_Dave
1
John-K
Meraki Employee John-K
4
Thibaut-Matzke
Thibaut-Matzke
2
PhilipDAth
Kind of a big deal PhilipDAth
12
BrechtSchamp
BrechtSchamp
4
View All
Kudos given to
User Count
rbnielsen
rbnielsen
1
CN
Meraki Alumni (Retired) CN
1
PhilipDAth
Kind of a big deal PhilipDAth
3
DexterLaBora
Meraki Employee DexterLaBora
3
BrechtSchamp
BrechtSchamp
2
View All

Community Record

184
Posts
177
Kudos
26
Solutions

Badges

CMNA
Meraki Champion
1st Birthday
Year 5 - MVM
100 Posts
50 Posts View All
Topics chengineer has Participated In
  • Topics chengineer has Participated In
  • Latest Contributions by chengineer

Re: Dashboard API via Python - unable to get local issuer certificate (pass...

by Adrian4 in Developers & APIs
Wednesday
Wednesday
cheers ... View more

Re: Python - a programming language has to be more than a cute name

by princedirect in Developers & APIs
‎03-30-2022 04:24 AM
‎03-30-2022 04:24 AM
I agree with you. I prefer to use JS. Talking about Python: weak typing, lack of explicit variable declarations, white space as syntax - it's true. ... View more

Re: Network Config Template API/Download

by dephinust in Developers & APIs
‎12-06-2020 02:38 AM
‎12-06-2020 02:38 AM
Hi @chengineer    I am looking to achieve the same thing, I want to retrieve the configurations (vlan subnets, firewall rules, etc) from multiple configuration templates. I tried running the backup_configs.py and I got the vlans id list back and the DHCP settings although I didn't get the vlan subnets back. Is this achievable?  ... View more

Re: [SUBMISSIONS CLOSED] Community Challenge: Brecht’s API Scavenger Hunt

by Retlaw in Community Announcements
‎08-29-2020 03:32 AM
2 Kudos
‎08-29-2020 03:32 AM
2 Kudos
Thanks BrechtSchamp.  Enjoyed it. More would be welcome 🙂 ... View more

Re: Meraki & Amazaon Alexa Integration

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎08-15-2020 04:48 PM
‎08-15-2020 04:48 PM
Anybody want to help beta test a lab guide on voice assistant integration please?  😀 Thanks in advance! ... View more

Re: MV Video Clip Download

by Kind of a big deal PhilipDAth in Developers & APIs
‎07-27-2020 01:38 PM
‎07-27-2020 01:38 PM
Wow @theshmike .  What an impressive effort! ... View more

Re: Dashboard API streaming live updates - announcement tool

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎07-24-2020 06:08 PM
‎07-24-2020 06:08 PM
good catch, it should be http://eurl.io/#SJ73d317E thanks! ... View more

Re: API Demo Platform - quickly experience Meraki APIs within seconds

by Kind of a big deal PhilipDAth in Developers & APIs
‎07-16-2020 03:14 PM
‎07-16-2020 03:14 PM
This is very cool.   It basically shows how you can re-purpose the WebEx client to create your own mobile app.  So many possibilities. ... View more

Re: [API] Want documentation for detailed data information of API response

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎07-15-2020 10:21 AM
3 Kudos
‎07-15-2020 10:21 AM
3 Kudos
@Namgyu for #1, "alerting" is also a possible state, and for #5, "ready" and "failed". ... View more

Re: bluetooth_settings

by A model citizen sungod in Developers & APIs
‎07-03-2020 06:41 AM
‎07-03-2020 06:41 AM
Here's a simple V1 example...   btw this is using meraki 1.0.0b11   Note that the V1 API names are not the same as in V0, the one to get the Bluetooth settings for a network is... https://developer.cisco.com/meraki/api-v1/#!get-network-wireless-bluetooth-settings     import os import sys import meraki   # set the key in the environment as MERAKI_DASHBOARD_API_KEY   # also define the org id in the environment ORG_ID = os.environ.get( "ORG_ID" )   def main():     dashboard = meraki.DashboardAPI(         api_key= '' ,         base_url= 'https://api.meraki.com/api/v1/' ,         print_console= False ,         output_log= False ,         wait_on_rate_limit= True       )          try :         networks = dashboard.organizations.getOrganizationNetworks(ORG_ID)     except meraki.APIError as e:         print(f 'Meraki API error: {e}' )         sys.exit( 1 )     except Exception as e:         print(f 'some other error: {e}' )         sys.exit( 1 )       for net in networks:         if 'wireless' in net[ 'productTypes' ]:             print(net[ 'name' ])             try :                 settings = dashboard.wireless.getNetworkWirelessBluetoothSettings(net[ 'id' ])             except meraki.APIError as e:                 print(f 'Meraki API error: {e}' )                 pass             except Exception as e:                 print(f 'some other error: {e}' )                 pass             else :                print(settings)     if __name__ == '__main__' :     main()   ... View more

Re: Location API Bluetooth Devices

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎07-01-2020 07:57 AM
‎07-01-2020 07:57 AM
Oh sorry, this thread was on BLE, my mistake! ... View more

Re: MV Sense - Send Image via Webhook?

by BobaTeaGood in Smart Cameras
‎07-01-2020 07:04 AM
‎07-01-2020 07:04 AM
Hi Mike-King - can you please reach out to us on https://platerecognizer.com/contact Want to better understand your situation and how we can help. ... View more

Re: How to pass array for includedEventTypes

by boomi in Developers & APIs
‎06-29-2020 11:53 AM
‎06-29-2020 11:53 AM
Yep, that was it, I forgot about the pagination. Thanks! ... View more

Re: Powershell - getNetworkEvents - specifying multiple event types (includ...

by kdc in Developers & APIs
‎06-15-2020 08:24 AM
‎06-15-2020 08:24 AM
Yeah, I can see how setting it in the resource as part of the URI is the proper way to do it.  However, I still want something a little more automated that builds that part of the URI from an array.   I have a couple of ideas, but I think HttpValueCollection is the most promising.  Create an HttpValueCollection and use System.UriBuilder to put together all of the different parts of the URI.   https://stackoverflow.com/questions/32442777/how-to-use-get-method-of-invoke-webrequest-to-build-a-query-string   I don't have time to try and code this right now.  Hopefully I'll be able to circle back to it in a couple of weeks. ... View more

Re: Switch - Layer 3 interface

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎06-01-2020 02:55 PM
‎06-01-2020 02:55 PM
Actually, MS's layer 3 interface configuration just went into v1 beta as of today. If you get a chance, please test them out and offer feedback ASAP so we can validate before v1 goes GA. You can find these endpoints in your dashboard organization's Help > API docs page > v1 beta > Switch Routing & DHCP. ... View more

Re: Claiming devices with action batches, error 400

by BrentG in Developers & APIs
‎05-28-2020 10:00 AM
‎05-28-2020 10:00 AM
Right now I'm just starting to learn Python so I'm trying to get a handle on that before moving on to the Meraki Dashboard API. Thanks for providing your script, I'll take a look at it and try it out. ... View more

Re: Unable to collect co-termination licenses.

by robcon in Developers & APIs
‎05-26-2020 06:37 AM
‎05-26-2020 06:37 AM
Thanks for the clarification. We'll start using that beta api and that command.   Rob ... View more

Re: Downloads of each developer kit?

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎05-13-2020 11:02 AM
2 Kudos
‎05-13-2020 11:02 AM
2 Kudos
Thanks for the suggestion guys. These changes have been added to releases 0.110.1 & 1.0.0b4 as of today. ... View more

Re: Processing real time motion alerts, people detection and vehicle detect...

by EdgarRamirez in Smart Cameras
‎04-21-2020 12:33 PM
‎04-21-2020 12:33 PM
Thank you very much for the quick reply, I will try using selenium but that is too slow for what i thought the API should be doing in a more simple faster way.   Thank you very much ... View more

Re: Get all clients in a group policy

by cmtk in Developers & APIs
‎04-13-2020 01:42 PM
‎04-13-2020 01:42 PM
Thanks @chengineer! I was thinking about using webhooks or the Change log endpoint as well. I look forward to those (potential) future feature updates. ... View more

Re: PYTHON - get_network_traffic_shaping - HTTP response not OK.

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎03-09-2020 01:53 PM
3 Kudos
‎03-09-2020 01:53 PM
3 Kudos
Two separate things here: 1. It looks like you moved over to the new Python library since your original post (which in the source there uses the deprecated SDK), so that's good. This library is easier and more intuitive to use. 2. Just like in dashboard UI, the "traffic shaping" page change significantly for a network that is bound to template, you cannot make the GET call here since the settings live on the parent template. If you change the network ID to be the configuration template's ID, you'll get back the traffic settings as dictated by the template. ... View more

Re: MV web Hooks and Microsoft Teams

by Julian in Smart Cameras
‎02-21-2020 01:45 AM
‎02-21-2020 01:45 AM
Thanks, I will check it.. ... View more

Re: Python: update_network_device

by Kind of a big deal PhilipDAth in Developers & APIs
‎02-18-2020 09:14 AM
2 Kudos
‎02-18-2020 09:14 AM
2 Kudos
Thanks @chengineer .  I had been delaying using that library in production thinking it was more still in beta.   However that library ("pip3 install meraki") works perfectly.  Sample working code:     import gpsd,os,argparse,meraki from dotenv import load_dotenv load_dotenv() load_dotenv(dotenv_path=os.path.join(os.path.expanduser("~"),".meraki.env")) dashboard = meraki.DashboardAPI( api_key=os.getenv("x_cisco_meraki_api_key"), base_url='https://api-mp.meraki.com/api/v0/', print_console=False ) ... dashboard.devices.updateNetworkDevice(netId,serial,lat=lat,lng=long)   ... View more

Re: Drag and Drop Programming with Meraki and Node-Red - Follow up QA from ...

by Uberseehandel in Developers & APIs
‎02-05-2020 12:38 AM
‎02-05-2020 12:38 AM
Drag and Drop Programming with Meraki and Node-RED   BrightTalk carries the presentations.   ... View more

Re: webhook: sharedSecret processing

by Meraki Alumni (Retired) chengineer in Developers & APIs
‎01-28-2020 01:24 PM
‎01-28-2020 01:24 PM
Yes, this needs to be fixed, and in the meantime, if the webhook receiver is not in your control (to accommodate the missing shared secret for the test), you can always test with the config change alert and make some trivial dashboard change. ... View more
Kudos from
User Count
Meraki_Dave
Meraki_Dave
1
John-K
Meraki Employee John-K
4
Thibaut-Matzke
Thibaut-Matzke
2
PhilipDAth
Kind of a big deal PhilipDAth
12
BrechtSchamp
BrechtSchamp
4
View All
Kudos given to
User Count
rbnielsen
rbnielsen
1
CN
Meraki Alumni (Retired) CN
1
PhilipDAth
Kind of a big deal PhilipDAth
3
DexterLaBora
Meraki Employee DexterLaBora
3
BrechtSchamp
BrechtSchamp
2
View All
My Accepted Solutions
Subject Views Posted

Re: MV Video Clip Download

Developers & APIs
4498 ‎07-18-2020 05:42 PM

Re: How to pass array for includedEventTypes

Developers & APIs
2127 ‎06-27-2020 10:55 AM

Re: Switch - Layer 3 interface

Developers & APIs
1889 ‎06-01-2020 02:55 PM

Re: Unable to collect co-termination licenses.

Developers & APIs
1302 ‎05-25-2020 08:08 AM

Re: Get all clients in a group policy

Developers & APIs
1530 ‎04-13-2020 12:52 PM

Re: PYTHON - get_network_traffic_shaping - HTTP response not OK.

Developers & APIs
2034 ‎03-09-2020 01:53 PM

Re: Bug with create organisation network API? Only works when a copy_from_n...

Developers & APIs
2876 ‎01-21-2020 02:54 PM

Re: Dashboard API via Python - unable to get local issuer certificate (pass...

Developers & APIs
10424 ‎01-13-2020 01:46 PM

Re: mqtt timestamp documentation wrong?

Developers & APIs
1154 ‎11-04-2019 01:47 PM

Re: Access API simply via browser without an API Key. Trick/Hack/Other? You...

Developers & APIs
2517 ‎08-01-2018 05:42 AM
View All
My Top Kudoed Posts
Subject Kudos Views

Re: Python API

Developers & APIs
8 8895

API Demo Platform - quickly experience Meraki APIs within seconds

Developers & APIs
7 6263

Re: Dashboard API via Python - unable to get local issuer certificate (pass...

Developers & APIs
4 10424

Re: Programming in Python: Follow up QA from the 1/8/2020 Webinar

Developers & APIs
4 4268

Re: Action Batches

Developers & APIs
4 4916
View All
Powered by Khoros
custom.footer.
  • Community Guidelines
  • Cisco Privacy
  • Khoros Privacy
  • Privacy Settings
  • Terms of Use
© 2023 Meraki