diff --git a/src/main/java/com/smartsheet/api/SmartsheetBuilder.java b/src/main/java/com/smartsheet/api/SmartsheetBuilder.java index 0d922af0..8ba907c6 100644 --- a/src/main/java/com/smartsheet/api/SmartsheetBuilder.java +++ b/src/main/java/com/smartsheet/api/SmartsheetBuilder.java @@ -76,12 +76,17 @@ public class SmartsheetBuilder { */ private String changeAgent; + /** URI to prod-us API endpoints */ + public static final String US_BASE_URI = "https://api.smartsheet.com/2.0/"; + /** URI to prod-eu API endpoints */ + public static final String EU_BASE_URI = "https://api.smartsheet.eu/2.0/"; + /** *

Represents the default base URI of the Smartsheet REST API.

* *

It is a constant with value "https://api.smartsheet.com/2.0".

*/ - public static final String DEFAULT_BASE_URI = "https://api.smartsheet.com/2.0/"; + public static final String DEFAULT_BASE_URI = US_BASE_URI; /** *

Represents the default base URI of the Smartsheetgov REST API.