From a81bd8b6d45e56438182b2ca973289ad2cd8b212 Mon Sep 17 00:00:00 2001 From: Noel Kocheril <10156492+NoelKocheril@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:20:52 -0400 Subject: [PATCH] Added Alternate URIs for other API Endpoints https://developer.cisco.com/meraki/api-v1/getting-started/#base-uri --- meraki/config.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meraki/config.py b/meraki/config.py index 43d33434..fdb10c51 100644 --- a/meraki/config.py +++ b/meraki/config.py @@ -6,6 +6,12 @@ # Base URL preceding all endpoint resources DEFAULT_BASE_URL = "https://api.meraki.com/api/v1" +# Alternate End Point URLs +CANADA_BASE_URL = "https://api.meraki.ca/api/v1" +CHINA_BASE_URL = "https://api.meraki.cn/api/v1" +INDIA_BASE_URL = "https://api.meraki.in/api/v1" +UNITED_STATES_FED_BASE_URL = "https://api.gov-meraki.com/api/v1" + # Maximum number of seconds for each API call SINGLE_REQUEST_TIMEOUT = 60