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

BrianKL

Conversationalist

Member since Mar 13, 2019

‎08-07-2019
Kudos from
User Count
rwiesmann
rwiesmann
1
jdsilva
jdsilva
1
View All

Community Record

4
Posts
2
Kudos
0
Solutions
Latest Contributions by BrianKL
  • Topics BrianKL has Participated In
  • Latest Contributions by BrianKL

Re: Meraki Camera API Snapshot

by BrianKL in Developers & APIs
‎04-26-2019 04:48 PM
1 Kudo
‎04-26-2019 04:48 PM
1 Kudo
I used Python:   import requests import json API_KEY = 'YOUR_API_KEY' NET_ID = 'YOUR_NETWORK_ID' SERIAL_CAM = 'YOUR_CAMERA_SERIAL_NUMBER' headers = { 'X-Cisco-Meraki-API-Key': API_KEY, } try: response = requests.post('https://api.meraki.com/api/v0/networks/'+NET_ID+'/cameras/'+SERIAL_CAM+'/snapshot', headers=headers) except requests.exceptions.RequestException as e: print("Error: %s" %(e)) data = response.json() url_link = data['url'] print(url_link) ... View more

Re: Meraki Camera API Snapshot

by BrianKL in Developers & APIs
‎03-14-2019 12:33 PM
1 Kudo
‎03-14-2019 12:33 PM
1 Kudo
Thank you very much, now it works correctly 😄 ... View more

Re: Meraki Camera API Snapshot

by BrianKL in Developers & APIs
‎03-14-2019 08:47 AM
‎03-14-2019 08:47 AM
Hi,   I'm using Python requests:   headers = {                  'X-Cisco-Meraki-API-Key': API_KEY,                  'Content-Type': 'application/json', }   response = requests.post('https://api.meraki.com/api/v0/networks/'+NET_ID+'/cameras/'+SERIAL_CAM1+'/snapshot', headers=headers) ... View more

Meraki Camera API Snapshot

by BrianKL in Developers & APIs
‎03-13-2019 06:01 PM
‎03-13-2019 06:01 PM
Hi,   I'm trying to take a snapshot by using the CURL giving the network id, the camera's serial number, and all the necessary data. However, when making the POST of the CURL, I get a 400 error Response.   HTTP ERROR 400 Problem accessing /cameras/live_snapshot. Reason:      can't parse j son parameters: No content to map due to end-of-input   I'm not sure what the problem is exactly.   Thank You, ... View more
Labels:
  • Labels:
  • Dashboard API
Kudos from
User Count
rwiesmann
rwiesmann
1
jdsilva
jdsilva
1
View All
My Top Kudoed Posts
Subject Kudos Views

Re: Meraki Camera API Snapshot

Developers & APIs
1 6126

Re: Meraki Camera API Snapshot

Developers & APIs
1 6316
View All
Powered by Khoros
custom.footer.
  • Community Guidelines
  • Cisco Privacy
  • Khoros Privacy
  • Cookies
  • Terms of Use
© 2023 Meraki