You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,21 @@ For more information about API Versioning, please check the [API Versioning Docu
98
98
99
99
**Important**: Not all the resources supported by this API are supported by all API versions. See the notes below or the [API Reference](https://developers.intercom.com/intercom-api-reference/reference) for more information about the resources supported by each API version.
100
100
101
+
## Regional Endpoint
102
+
103
+
This SDK allows to work in a different region than the US. Intercom provides [different endpoints](https://developers.intercom.com/building-apps/docs/rest-apis#available-endpoints).
104
+
105
+
```php
106
+
use Intercom\IntercomClient;
107
+
108
+
$client = new IntercomClient(
109
+
'<insert_token_here>',
110
+
null,
111
+
[],
112
+
IntercomClient::BASE_URI_EU
113
+
);
114
+
```
115
+
101
116
## Contacts
102
117
103
118
This resource is only available in API Versions 2.0 and above
0 commit comments