Skip to content

Commit 10390bc

Browse files
committed
renaming
1 parent 59d3c11 commit 10390bc

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Examples/eg001EmbeddedSigning.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616
# The envelope will be sent first to the signer.
1717
# After it is signed, a copy is sent to the cc person.
1818

19-
base_path="https://demo.docusign.com/restapi"
19+
base_path="https://demo.docusign.net/restapi"
2020
# temp files:
2121
request_data=$(mktemp /tmp/request-eg-001.XXXXXX)
2222
response=$(mktemp /tmp/response-eg-001.XXXXXX)

Examples/eg002SigningViaEmail.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
if [[ $SHELL != *"bash"* ]]; then
55
echo "PROBLEM: Run these scripts from within the bash shell."
66
fi
7-
base_path="https://demo.docusign.com/restapi"
7+
base_path="https://demo.docusign.net/restapi"
88

99
# document 1 (html) has tag **signature_1**
1010
# document 2 (docx) has tag /sn1/

Examples/eg003ListEnvelopes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
if [[ $SHELL != *"bash"* ]]; then
66
echo "PROBLEM: Run these scripts from within the bash shell."
77
fi
8-
base_path="https://demo.docusign.com/restapi"
8+
base_path="https://demo.docusign.net/restapi"
99

1010
echo ""
1111
echo "Sending the list envelope status request to DocuSign..."

Examples/eg004EnvelopeInfo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
if [[ $SHELL != *"bash"* ]]; then
99
echo "PROBLEM: Run these scripts from within the bash shell."
1010
fi
11-
base_path="https://demo.docusign.com/restapi"
11+
base_path="https://demo.docusign.net/restapi"
1212

1313
# Check that we have an envelope id
1414
if [ ! -f ../ENVELOPE_ID ]; then

Examples/eg005EnvelopeRecipients.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
if [[ $SHELL != *"bash"* ]]; then
99
echo "PROBLEM: Run these scripts from within the bash shell."
1010
fi
11-
base_path="https://demo.docusign.com/restapi"
11+
base_path="https://demo.docusign.net/restapi"
1212

1313
# Check that we have an envelope id
1414
if [ ! -f ../ENVELOPE_ID ]; then

Examples/eg006EnvelopeDocs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
if [[ $SHELL != *"bash"* ]]; then
88
echo "PROBLEM: Run these scripts from within the bash shell."
99
fi
10-
base_path="https://demo.docusign.com/restapi"
10+
base_path="https://demo.docusign.net/restapi"
1111

1212
# Check that we have an envelope id
1313
if [ ! -f ../envelope_id ]; then

Examples/eg007EnvelopeGetDoc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ output_file="envelope_document."
99
if [[ $SHELL != *"bash"* ]]; then
1010
echo "PROBLEM: Run these scripts from within the bash shell."
1111
fi
12-
base_path="https://demo.docusign.com/restapi"
12+
base_path="https://demo.docusign.net/restapi"
1313

1414
# Check that we have an envelope id
1515
if [ ! -f ../envelope_id ]; then

Examples/eg008CreateTemplate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
if [[ $SHELL != *"bash"* ]]; then
77
echo "PROBLEM: Run these scripts from within the bash shell."
88
fi
9-
base_path="https://demo.docusign.com/restapi"
9+
base_path="https://demo.docusign.net/restapi"
1010

1111
# Step 1. List the account's templates
1212
echo ""

0 commit comments

Comments
 (0)