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"
}
]
}
}