-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
23 lines (17 loc) · 1.08 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# URL of the API endpoint. You probably don't have to change this.
BASE_URL = 'https://api.sipgate.com/v2'
# Your Personal-Access-Token and the ID.
# Open https://app.sipgate.com and create a new token by navigating to "Benutzereinstellungen" -> "Personal-Access-Tokens".
# The token should have the `sessions:calls:write` scope (see https://www.sipgate.io/rest-api/authentication#personalAccessToken for more information).
TOKEN_ID = 'YOUR_SIPGATE_TOKEN_ID'
TOKEN = 'YOUR_SIPGATE_TOKEN'
# You can get the device ID by using the endpoint "/{userID}/devices" (see https://api.sipgate.com/v2/doc#/devices/getDevices).
# Alternatively you can use the Node.JS library (see https://github.com/sipgate-io/sipgateio-node-examples#list-common-ids).
# Choose a phone extension, see README.md for more information.
DEVICE_ID = 'YOUR_SIPGATE_DEVICE_EXTENSION'
# Choose a phone number or phone extension of the caller.
CALLER = 'DIALING_DEVICE'
# Choose the dialing number to be displayed.
CALLER_ID = 'DISPLAYED_CALLER_NUMBER'
# Choose the phone number of the recipient.
CALLEE = 'YOUR_RECIPIENT_PHONE_NUMBER'