Products
Platform
General
Public groups
How might I get an org's licensing model without trying the various endpoints for subscription, co-term, and device-based licensing models? Perhaps there is an endpoint that returns the model type?Thankshttps://documentation.meraki.com/General_Administration/Licensing/Meraki_Licensing
Solved! Go to solution.
https://developer.cisco.com/meraki/api-v1/get-organization/
This includes in the output, as an example:
"licensing": { "model": "co-term" },
View solution in original post
I was about to press send...
GreenMan is right !
Thanks so much. This was almost too obvious, but when I searched the API it was not something that jumped-out at me. I just tested and confirmed this.
Same here. I quick tip that I can give you.
https://api.meraki.com/api/v1/organizations/[OrgId]/openapiSpec
and you can CTRL+F in your browser some keywords ( like per-device , co-term ) and I was able to spot that endpoint pretty quickly.
I'm familiar with the endpoints to get device and co-term license details. Which one gets the license details for subscription models? Thanks again