For software development issues related to Meraki API. From a programmability perspective, the Meraki cloud platform provides several APIs which are referred as “Meraki API”. Networking and configuration questions should be asked on https://networkengineering.stackexchange.com/
Questions tagged [meraki-api]
25 questions
0
votes
1 answer
How to grab value in data from json resonse?
Q: how do i grab the value's from my api's response?
my code:
#!/usr/bin/python3
API_KEY = ""
ORG_ID = ""
import meraki
import requests
import json
import time
import sys
from pprint import pprint
url =…

Juriaan
- 13
- 5
0
votes
1 answer
Python API Call Iteration
I am creating a l7 firewall mass update python script using the meraki api and I have run into an issue. I need the script to iterate through for each line item in the .txt file. Each line item in the .txt file is a network id. Currently the way I…

austin_campbell
- 3
- 1
0
votes
0 answers
How to post an API key on a header with the post() method using Groovy?
I'm trying to write a script in Groovy that makes an API request to check the status of VPN tunnels. I've been trying the implement the post() method from the HTTP library to update the header of the url with the API key. I keep running into an…

SmokinIndo
- 19
- 1
0
votes
1 answer
Meraki API connection refused from test server
I have a java application and it can successfully connect to api.meraki.com in my local machine but when I deploy my java application to the test server,
the application which lives in a docker container can not connect to api.meraki.com.
In the…

ihsan kocak
- 1,541
- 1
- 17
- 26
0
votes
0 answers
Task Scheduler, Execute powershell script with a command
I have a powershell api script that changing wifi passwords in Meraki.
Now i want to add this script to Task Scheduler and execute it with a specific command line, for example:
In "Action" section i'm always putting those lines:
Program/script :…

hightest
- 395
- 5
- 15
0
votes
1 answer
Meraki REST API - Missing endpoints?
we have a problem with Cisco Meraki REST API (https://developer.cisco.com/meraki/api/#/rest/)
It seems that there doesn't exist REST endpoints for getting such basic information like ARP, MAC tables.
Is there anyone who knows how to get this data…

Mira
- 561
- 1
- 4
- 6
0
votes
1 answer
IIS interactions with API
I am developing an IIS web server to act as a receiver for Meraki's API scanner. Their API sends out .json periodically with information pertaining to the wireless clients connected to each Meraki device.
I'm having problems understanding the…

Jack Strain
- 3
- 1
0
votes
2 answers
Exporting python data to CSV
I'm currently working on getting the licensing for all our clients and have successfully managed to output to print in the console.
I cannot for the life of me figure out how to output to a csv with the structure…

charlie-foxtrot117
- 11
- 2
0
votes
1 answer
Meraki - Cannot get list of devices
Im trying to implement the meraki api, I can get everything else such as list of Orgs, admins within an Org, etc. However cant get list of devices as it returns empty even though there are devices visible on the dashboard.
So, this is working with…

Raheel Hasan
- 5,753
- 4
- 39
- 70
-2
votes
1 answer
How to insert list of items into URL, Python
I am trying to insert network ID's, which are located on a per line basis in a text document. There are about 500 lines of ID's. For each network ID, I need to insert it into an existing URL. The function of this is to query the names of network…

Josh S
- 1
- 1