cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
50076
Views
1
Helpful
17
Replies

Postman returning 404 error

mmoss80
Level 4
Level 4

I jumped into Postman for the first time since February and all of my GET commands are returning 404 errors. To troubleshoot I ran previously good GET calls from history and even went to back to basics and did the getOrganizations request. I've used the base url of https//api.meraki.com/api/v0 and the shard for the dashboard in it's place. Not sure if this snip is enough to get an idea of the cause or not. I also reset my API thinking it was the error but the new one didn't help any.

image.png

17 Replies 17

I'm learning Python so I'm really about to kick this to the curve. It's was quick and easy to pick up, but doesn't look like it's going to work like it used to.

Hi,

Python is easy to get it...

import meraki
import apikey

api_key = apikey.Get_Api_Key("")
dashboard = meraki.DashboardAPI(api_key)
my_org = dashboard.organizations.getOrganizations()

for org in my_org:
org_id = org['id']
print(org)

I've been working on learning it for awhile now. Unfortunately I can't seem to manage not being pulled in 100 different directions on a daily basis so it's not going as fast as I'd like.