- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Now available: organization customer number and region host name (getOrganizations)
Two new attributes are available in API, in the organization entity returned in getOrganizations and getOrganization, for example.
cloud.region.host.name: The host name of the cloud region where the organization is hosted.
New management.details array item, "customer number", which returns the organization's Meraki customer number, which is typically used when opening support cases.
Example organization entity
{
"id": "id",
"name": "name",
"url": "url",
"api": {
"enabled": true
},
"licensing": {
"model": "model"
},
"cloud": {
"region": {
"name": "North America",
"host": {
"name": "United States" // new!
}
}
},
"management": {
"details": [
{
"name": "customer number", // new!
"value": "00000000"
}
]
}
}
- Labels:
-
Dashboard API
-
Updates from Meraki
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Lol.
I was running one of my scripts that looks at the management var, and wondering why my script suddenly began failing, and I was wondering where that new attribute came from but I couldn't find it in the docs. 😄
Like what you see? - Give a Kudo ## Did it answer your question? - Mark it as a Solution 🙂
All code examples are provided as is. Responsibility for Code execution lies solely your own.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
John, the new management.details array. Will that ever expand from 1 value/will it always be "1"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It has two values so far - name and value, so ...
