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

tejashah88

Conversationalist

Member since May 2, 2018

‎11-02-2019
Kudos from
User Count
strat
strat
1
MeredithW
Community Manager MeredithW
1
JayCoridan
JayCoridan
1
Janno
Janno
1
Dave_Lewis
Dave_Lewis
1
View All
Kudos given to
User Count
PhilipDAth
Kind of a big deal PhilipDAth
3
View All

Community Record

2
Posts
6
Kudos
0
Solutions

Badges

1st Birthday
Lift-Off View All
Latest Contributions by tejashah88
  • Topics tejashah88 has Participated In
  • Latest Contributions by tejashah88

Re: Announcing a node.js client library for the Dashboard API

by tejashah88 in Developers & APIs
‎11-02-2019 02:39 PM
‎11-02-2019 02:39 PM
@PhilipDAth Thanks for bringing this to my attention. For everyone else, to summarize the discussion from here, there's a bug in the HTTP library axios where calling a POST request for a url that results in a redirect will change the request operation to a GET. You can follow more of this discussion here. ... View more

Announcing a node.js client library for the Dashboard API

by tejashah88 in Developers & APIs
‎06-08-2018 09:47 PM
6 Kudos
‎06-08-2018 09:47 PM
6 Kudos
Hey guys,   I've been working on a client library to interact with the Dashboard API from node.js called 'node-meraki-dashboard'. It's fairly simple to use, is promised based, and all endpoints as of June 2018 have been implemented. Check it out here: https://github.com/tejashah88/node-meraki-dashboard. If you have any feature suggestions or bugs, please create a GitHub issue.   Here are some examples to get started:   Using Promises: var dashboard = require('node-meraki-dashboard')(apiKey); dashboard.organizations.list() .then(data => console.log(data)) .catch(error => console.log(error)); Using async/await (node 8+) var dashboard = require('node-meraki-dashboard')(apiKey); (async function() { try { var orgList = await dashboard.organizations.list(); console.log(orgList); } catch (error) { console.log(error); } })();   ... View more
Labels:
  • Labels:
  • Dashboard API
Kudos from
User Count
strat
strat
1
MeredithW
Community Manager MeredithW
1
JayCoridan
JayCoridan
1
Janno
Janno
1
Dave_Lewis
Dave_Lewis
1
View All
Kudos given to
User Count
PhilipDAth
Kind of a big deal PhilipDAth
3
View All
My Top Kudoed Posts
Subject Kudos Views

Announcing a node.js client library for the Dashboard API

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