Hi RJ, You are right, API needs to be toggled per organization. The bonus point is now you can activate the API by using the API. Use the below endpoints to get your organization IDs first and then enable API on the organization level. (Replace the <key> and {organizationId} with your own values.) curl -L -H 'X-Cisco-Meraki-API-Key:<key>' -H 'Content-Type: application/json' -X GET 'https://api.meraki.com/api/v1/organizations' curl -L -H 'X-Cisco-Meraki-API-Key: <key>' -H 'Content-Type: application/json' -X PUT --data-binary '{"api": {"enabled": true}}' 'https://api.meraki.com/api/v1/organizations/{organizationId}'
... View more