Community Record
484
Posts
721
Kudos
25
Solutions
Badges
Aug 23 2024
10:13 AM
Yeah I am currently making the API call to get merakiAuthUsers for all the networks that exists within our organization but it isn't working and I am unable to retrieve all of the users with this method.
... View more
Aug 22 2024
2:13 PM
1 Kudo
Thanks John, I'm sort of in a intern role (hence which is why I was given this task). But i'll talk to our rep to see if this is something possible. Thanks for your help! very new to this so your response is very helpful. Thank you!
... View more
Aug 22 2024
1:53 PM
1 Kudo
This suite of operations are another option: https://developer.cisco.com/meraki/api-v1/get-organization-wireless-devices-channel-utilization-by-network/ https://developer.cisco.com/meraki/api-v1/get-organization-wireless-devices-channel-utilization-by-device/
... View more
Aug 22 2024
1:50 PM
1 Kudo
OMG. This API call in particular is going to save a LOT of time in some of my scripts. https://developer.cisco.com/meraki/api-v1/get-network-policies-by-client/
... View more
Aug 22 2024
1:43 PM
2 Kudos
Thanks for this rec! I'd like to explain why this is not the case, and why similarly, there's no CREATE action for a device. Devices in this sense refer to the physical hardware, so the concept of CREATING or DELETING a device is awkward. This is unlike a Docker cluster, an EC2 instance, a virtual device of some kind, etc. which could be CREATED or DELETED on a whim, which is where I imagine the expectation arises. getDevice & updateDevice (or even better, getOrganizationDevices & updateDevice) manage the attributes of the device, but the resource itself is never created or deleted. Although, that would be a pretty powerful operation if it could CREATE an MS355 out of thin air. Sign me up! Dashboard claim and release operations are represented in API as functional resources, rather than CRUD operations, which is an accurate depiction of what's happening. Forcing functional operations into the format of a CRUD suite can be awkward at best and confusing at worst. In short, not every REST operation is part of a CRUD suite! I hope this helps.
... View more
Aug 22 2024
10:06 AM
2 Kudos
from meraki import meraki Instead, use: import meraki
... View more
Aug 5 2024
9:52 AM
What if you use this API Endpoint to update the VLAN information? https://developer.cisco.com/meraki/api-v1/update-network-appliance-vlan/
... View more
Jul 10 2024
4:20 AM
Currently, we are trying to filter out the error messages—specifically 400 Bad Requests that contain keywords like "not support," "unsupported," "not enabled," and "This endpoint only supports," as well as 404 Not Found and 403 Forbidden errors, since these are expected. Our goal is to identify errors related to missing parameters and similar issues since the customer is concerned about them. Once we have that, I will post them here.
... View more
Jul 9 2024
10:29 AM
Thanks for sharing this request! Please work with your account rep to open a feature request at your convenience.
... View more
Jul 9 2024
10:26 AM
If you are experiencing this issue, please contact Meraki Support to resolve.
... View more
May 28 2024
6:07 AM
In our specific use-case, flexibility is not what we want. I've got customers who are capable enough to claim new devices to a network and add those to a template, but not savvy enough to know how to configure switch ports. Ideally, I'd preload a combined template in their Org with the 'golden' config in which they'd create new networks from. I can't add that combined golden config template for tens or hundreds of customers right now without this silly manual step of creating a switch profile.
... View more
Apr 24 2024
9:09 AM
5 Kudos
Python 3.8's end of life date, October 2024, is quickly approaching! That means you should be in the process of upgrading your critical platforms to a newer version of Python, and we recommend 3.10, which offers a number of great new capabilities which are not offered in earlier versions (even 3.9), and has been GA for almost three years already. Some components of the Meraki Python library already currently require Python 3.10+ because they take advantage of the improvements in this version, whereas others require 3.8+. In light of the upcoming 3.8 end of life date, as well as other planned enhancements, we will be simplifying this requirement and enforcing Python 3.10 or newer for the entire library on or before the Python 3.8 end of life date. The upshot: Existing revisions of the Meraki Python library (up to v1.45.0) will not see changes to their existing Python version requirements. If you do not need to upgrade your Meraki library to take advantage of new features added to the Meraki API, then our requirements changes will not impact you. New features released after v1.45.0 will only be available to newer library revisions which will soon enforce the 3.10+ requirement. As always, please feel free to ask any questions here.
... View more
Labels:
- Labels:
-
Dashboard API
-
Python
-
Updates from Meraki
Apr 23 2024
3:43 PM
This should be the default for the Postman collection (Bearer Token and {{apiKey}}). I have the apiKey variable set in my Environment. I never have to do anything else. Perhaps there are other methods too?
... View more
Apr 22 2024
12:50 PM
It has two values so far - name and value, so ...
... View more
Apr 16 2024
2:05 PM
10 Kudos
We have recently released API controls for our wireless Air Marshal feature, which helps wireless admins manage wireless threats. With these new API operations, you can configure and manage default Air Marshal policies and per-network rules. These operations augment the existing getNetworkWirelessAirMarshal operation, which returns scan results from a specific network. The new operations are fully available for immediate use and will be included in the upcoming May 2024 updates to our documentation and Python libraries. First, to manage your per-network rules, we have a standard CRUD suite: Create a new rule with createNetworkWirelessAirMarshalRule: POST /networks/{networkId}/wireless/airMarshal/rules Update or delete a rule with updateNetworkWirelessAirMarshalRule or deleteNetworkWirelessAirMarshalRule: PUT /networks/{networkId}/wireless/airMarshal/rules/{ruleId} DELETE /networks/{networkId}/wireless/airMarshal/rules/{ruleId} Fetch all rules for all networks with getOrganizationWirelessAirMarshalRules: GET /organizations/{organizationId}/wireless/airMarshal/rules Example output {
"items": [
{
"network": {
"id": "N_12345",
"name": "Network 1"
},
"ruleId": "5239",
"type": "allow",
"updatedAt": "2023-05-23 12:02:46.298",
"createdAt": "2023-05-23 12:02:46.298",
"match": {
"string": "ipsum",
"type": "contains"
}
}
],
"meta": {
"counts": {
"items": {
"total": 1
}
}
}
} To manage your default per-network rules, you can use these new operations: To update the default policy per network, use updateNetworkWirelessAirMarshalSettings: PUT /networks/{networkId}/wireless/airMarshal/settings To retrieve all default policies for all networks, getOrganizationWirelessAirMarshalSettingsByNetwork: GET /organizations/{organizationId}/wireless/airMarshal/settings/byNetwork Example output {
"items": [
{
"networkId": "N_12345",
"defaultPolicy": "allow"
}
],
"meta": {
"counts": {
"items": {
"total": 1,
"remaining": 0
}
}
}
} For more detail on these operations, please consult the relevant sections of the OpenAPI specification. We're excited to enable your automated control and validation of these operations and look forward to your feedback!
... View more
Labels:
- Labels:
-
Dashboard API
-
Updates from Meraki
Mar 12 2024
1:38 PM
2 Kudos
There's a chance the minimum timespan is not documented or enforced. A 30-minute minimum timespan seems reasonable for some aggregate stats. But yes, a support case would be needed to nail it down.
... View more
Jan 25 2024
10:56 AM
Hello. Do you have a guide to complete this migration? I have found parts of the process but some parts are not working.
... View more
Jan 16 2024
11:08 PM
¡Hola Patcassi,..! Gracias por la información. He leído sobre API de panel de control,... ¿Cuáles son sus aplicaciones principales? 👌
... View more
Jan 12 2024
9:59 AM
Okay, thanks John.
... View more
Jan 12 2024
9:53 AM
Hello @amattison , I cannot confirm this on my end, but what you've described here could be a bug. Please report it through Meraki support with steps to reproduce the issue. Kindly, John
... View more
Jan 11 2024
3:53 AM
I have written code using Meraki SDK for guest wifi access and Guests are getting credentials in email Not sure if that will work for VPN , if you need code let me know
... View more
Dec 12 2023
4:08 PM
@MartinS wrote: Fantastic, getAdministeredIdentitiesMe is exactly what I'm looking for, thanks very much @John_on_API ! Just as a side point, is there a best practice guide on how managed services organisations should use accounts and generate API keys when integrating with 3rd party systems like Highlight? I ask because generating API keys on user accounts associated with individuals is dangerous because if that individual leaves the MSP, their account gets suspended and that kills the key (we've seen this happen several times). I'm guessing the right thing to do is have a key associated with a non-personal api@serviceprovider.com account where the credentials are carefully managed and not widely known, but where emails to api@serviceprovider.com do get delivered somewhere? I'd recommend that approach in most scenarios for now. The email should be something that's clearly named and helps identify who manages the key/credentials, e.g. serviceaccount@partnerdomain.com. As the partner, you should not share these credentials (password or API key) with the customer. Customers who want to revoke partner access would simply delete the given admin from their admins list. The customer would never have the API key for that identity.
... View more
Nov 29 2023
1:56 AM
Hello @John_on_API , I have some doubts regarding some options, not sure to understand correctly. I have a list of actions, that I then split in different batches per network. For example, per network : Create Vlan Change DHCP option Activate VPN I want : - each batch to run as asynchonous, because each action depends on the previous one, and if there is an error, it must be canceled. - batches to run all at the same time, to make it faster, as there are not dependant on each other. I use : batch_helper.BatchHelper(dashboard, orgID, batch_action_list,actions_per_new_batch=3,synchronous_new_batches=True) linear_new_batches is set to False by default, so batches should run at the same time ? confirmed_new_batches is set to True by default. It means that as soon as the batch is submitted, it is started, right ? If I set to False, it will instead wait for all my batches to be submitted to start them ? With the limit of 5, better to let it to True I guess. Is it right ? Thank you for your time
... View more
Nov 20 2023
8:04 AM
2 Kudos
Hi @PhilipDAth I suspect this was one of the issues solved recently: https://github.com/meraki/dashboard-api-python/issues?q=is%3Aissue+is%3Aclosed
... View more
Nov 16 2023
12:30 AM
2 Kudos
You can find it here: v1-beta - Meraki Portal What's New & Changelog - Cisco Meraki Developer Hub and search for "wake"
... View more
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
1284 | Jan 8 2025 12:51 PM | |
496 | Dec 5 2024 8:32 AM | |
690 | Oct 25 2024 10:16 AM | |
766 | Oct 25 2024 10:13 AM | |
2272 | Sep 12 2024 11:32 AM | |
1201 | Aug 27 2024 3:02 PM | |
1216 | Aug 22 2024 1:22 PM | |
1817 | Aug 2 2024 8:58 AM | |
4429 | Jan 12 2024 9:51 AM | |
3397 | Dec 11 2023 1:33 PM |
My Top Kudoed Posts
Subject | Kudos | Views |
---|---|---|
25 | 16068 | |
13 | 10815 | |
10 | 1631 | |
10 | 7298 | |
10 | 7455 |