11Sight RESTful API
External API allows you to communicate with the 11Sight SDK Server. You can create users, fetch their calls, get information related to calls and so on. You can connect to the External API by making REST requests to the API. Base URL to make requests are https://sdk.11sight.com for Production and https://sdktest.11sight.com for Sandbox.
As an example, to get the list of your subscribers, make a request with the following curl command:
curl "https://sdk.11sight.com/api/v2/users.json" \
-H "S-Auth-Token: YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d $'{}'