Skip to content

Commit 92a71e9

Browse files
authored
Update ds_config_sample.py
1 parent b587953 commit 92a71e9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

app/ds_config_sample.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
# DocuSign configuration settings
44

55
DS_CONFIG = {
6-
"ds_client_id": "{CLIENT_ID}", # The app's DocuSign integration key
7-
"ds_client_secret": "{CLIENT_SECRET}", # The app's DocuSign integration key's secret
6+
"ds_client_id": "{INTEGRATION_KEY_AUTH_CODE}", # The app's DocuSign integration key
7+
"ds_client_secret": "{SECRET_KEY}", # The app's DocuSign integration key's secret
88
"signer_email": "{USER_EMAIL}",
99
"signer_name": "{USER_FULLNAME}",
10-
"app_url": "{APP_URL}", # The url of the application. Eg http://localhost:5000
10+
"app_url": "http://localhost:5000", # The url of the application. Eg http://localhost:5000
1111
# NOTE: You must add a Redirect URI of appUrl/ds/callback to your Integration Key.
1212
# Example: http://localhost:5000/ds/callback
1313
"authorization_server": "https://account-d.docusign.com",
@@ -28,7 +28,7 @@
2828
}
2929

3030
DS_JWT = {
31-
"ds_client_id": "{CLIENT_ID}",
31+
"ds_client_id": "{INTEGRATION_KEY_JWT}",
3232
"ds_impersonated_user_id": "{IMPERSONATED_USER_ID}", # The id of the user.
3333
"private_key_file": "./private.key", # Create a new file in your repo source folder named private.key then copy and paste your RSA private key there and save it.
3434
"authorization_server": "account-d.docusign.com"

0 commit comments

Comments
 (0)