cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
6827
Views
4
Helpful
2
Replies

Find org id by network number

matthias.klein
Community Member

Dear Community,

does anyone know a quick way to derive a org id by a given network_id..? do I have to traverse the whole org to find the network?

Thx in advance,

Matthias

1 Accepted Solution

Accepted Solutions

BrechtSchamp
Level 11
Level 11

HTTP REQUEST

GET /networks/[id]

https://documenter.getpostman.com/view/897512/meraki-dashboard-api/2To9xm?version=latest#a876092f-df92-42a9-80cf-a4d033db1527

That returns the organization id.

SAMPLE RESPONSE

Successful HTTP Status: 200
{
  "id":"N_1234",
  "organizationId":"1234",
  "type": "combined",
  "configTemplateId":"L_64682949123123123"
  "name":"My network",
  "timeZone": "US/Pacific",
  "tags": null

View solution in original post

2 Replies 2

BrechtSchamp
Level 11
Level 11

HTTP REQUEST

GET /networks/[id]

https://documenter.getpostman.com/view/897512/meraki-dashboard-api/2To9xm?version=latest#a876092f-df92-42a9-80cf-a4d033db1527

That returns the organization id.

SAMPLE RESPONSE

Successful HTTP Status: 200
{
  "id":"N_1234",
  "organizationId":"1234",
  "type": "combined",
  "configTemplateId":"L_64682949123123123"
  "name":"My network",
  "timeZone": "US/Pacific",
  "tags": null

Oh Sir, .. thank you - so easy.