Skip to content

Commit 5345369

Browse files
committed
Text changes for eSign home page
1 parent 3b9096b commit 5345369

File tree

1 file changed

+50
-60
lines changed

1 file changed

+50
-60
lines changed

views/pages/index_esignature_examples.ejs

Lines changed: 50 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99
<h2 class="mt-4">Basic examples</h2>
1010
<% } %>
1111

12-
<h4 id="example001">1. <a href="eg001">Use embedded signing</a></h4>
13-
<p>This example sends an envelope, then uses embedded signing for the first signer.
14-
With embedded signing, DocuSign signing is initiated from your website.
12+
<h4 id="example001">1. <a href="eg001">Request a signature through your app (embedded signing)</a></h4>
13+
<p>Sends an envelope, then uses embedded signing for the first signer. With embedded signing, DocuSign signing is initiated from your website.
1514
</p>
1615
<p>API methods used:
1716
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>
@@ -20,7 +19,7 @@
2019
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createrecipient/">EnvelopeViews::createRecipient</a>.
2120
</p>
2221

23-
<h4 id="example002">2. <a href="eg002">Send an envelope with a remote (email) signer and cc recipient</a></h4>
22+
<h4 id="example002">2. <a href="eg002">Request a signature by email (remote signing)</a></h4>
2423
<p>The envelope includes a pdf, Word, and HTML document. Anchor text
2524
(<a target='_blank'
2625
href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>)
@@ -30,42 +29,39 @@
3029
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>.
3130
</p>
3231

33-
<h4 id="example003">3. <a href="eg003">List envelopes in the user's account</a></h4>
34-
<p>List the envelopes created in the last 30 days.
32+
<h4 id="example003">3. <a href="eg003">List envelope status changes</a></h4>
33+
<p>The envelopes' current status is included
3534
</p>
3635
<p>API method used:
3736
<a target='_blank'
3837
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/liststatuschanges/">Envelopes::listStatusChanges</a>.
3938
</p>
4039

41-
<h4 id="example004">4. <a href="eg004">Get an envelope's basic information and status</a></h4>
42-
<p>List the basic information about an envelope, including its overall status.
43-
Additional API/SDK methods may be used to get additional information about the
44-
envelope, its documents, recipients, etc.
40+
<h4 id="example004">4. <a href="eg004">Get envelope information</a></h4>
41+
<p>Lists basic information about an envelope, including its overall status.
4542
</p>
4643
<p>API method used:
4744
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/get/">Envelopes::get</a>.
4845
</p>
4946

50-
<h4 id="example005">5. <a href="eg005">List an envelope's recipients and their status</a></h4>
51-
<p>List the envelope's recipients, including their current status.
47+
<h4 id="example005">5. <a href="eg005">List envelope recipients</a></h4>
48+
<p>Includes current recipient status
5249
</p>
5350
<p>API method used:
5451
<a target='_blank'
5552
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/list/">EnvelopeRecipients::list</a>.
5653
</p>
5754

58-
<h4 id="example006">6. <a href="eg006">List an envelope's documents</a></h4>
59-
<p>List the envelope's documents. A <i>Certificate of Completion</i> document
60-
is also associated with every envelope.
55+
<h4 id="example006">6. <a href="eg006">List envelope documents</a></h4>
56+
<p>Includes current recipient status
6157
</p>
6258
<p>API method used:
6359
<a target='_blank'
6460
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopedocuments/list/">EnvelopeDocuments::list</a>.
6561
</p>
6662

67-
<h4 id="example007">7. <a href="eg007">Download a document from an envelope</a></h4>
68-
<p>An envelope's documents can be downloaded one by one or as a complete set.
63+
<h4 id="example007">7. <a href="eg007">Download envelope documents</a></h4>
64+
<p>Downloads individual documents, the documents concatenated together, or a ZIP file of the documents
6965
</p>
7066
<p>API method used:
7167
<a target='_blank'
@@ -79,42 +75,37 @@
7975
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/templates/templates/create/">Templates::create</a>.
8076
</p>
8177

82-
<h4 id="example009">9. <a href="eg009">Send an envelope using a template</a></h4>
78+
<h4 id="example009">9. <a href="eg009">Request a signature by email using a template</a></h4>
8379
<p>The envelope is defined by the template.
8480
The signer and cc recipient name and email are used to fill in the template's <i>roles</i>.</p>
8581
<p>API method used:
8682
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>.
8783
</p>
8884

89-
<h4 id="example010">10. <a href="eg010">Send an envelope using binary document transfer</a></h4>
90-
<p>The envelope includes a pdf, Word, and HTML document.</p>
91-
<p>Multipart data transfer is used to send the documents in binary format to DocuSign.
92-
Binary transfer is 33% more efficient than base64 encoding and is recommended for documents over 15M Bytes.
93-
Binary transfer is not yet supported by the SDK.
85+
<h4 id="example010">10. <a href="eg010">Attach documents using binary transfer</a></h4>
86+
<p>Binary transfer is 33% more efficient than using Base64 encoding
9487
</p>
9588
<p>API method used:
9689
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>.
9790
</p>
9891

99-
<h4 id="example011">11. <a href="eg011">Use embedded sending</a></h4>
100-
<p>An envelope will be created in draft mode. The DocuSign
101-
web tool (NDSE) will then be shown, enabling further updates
102-
to the envelope before it is sent.
92+
<h4 id="example011">11. <a href="eg011">Send an envelope in your app (embedded sending)</a></h4>
93+
<p>Embeds the DocuSign UI in your web app to finalize or update the envelope and documents before they are sent
10394
</p>
10495
<p>API methods used:
10596
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>,
10697
<a target='_blank'
10798
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createsender/">EnvelopeViews::createSender</a>.
10899

109-
<h4 id="example012">12. <a href="eg012">Embedded DocuSign web tool</a></h4>
100+
<h4 id="example012">12. <a href="eg012">Embed the DocuSign UI in your app</a></h4>
110101
<p>Redirect the user to the DocuSign web tool.</p>
111102
<p>API method used:
112103
<a target='_blank'
113104
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createconsole/">EnvelopeViews::createConsole</a>.
114105
</p>
115106

116-
<h4 id="example013">13. <a href="eg013">Use embedded signing from a template with an added document</a></h4>
117-
<p>This example sends an envelope based on a template.</p>
107+
<h4 id="example013">13. <a href="eg013">Request a signature using a composite template</a></h4>
108+
<p>Sends an envelope based on a template.</p>
118109
<p>In addition to the template's document(s), the example adds an
119110
additional document to the envelope by using the
120111
<a target='_blank'
@@ -130,8 +121,9 @@
130121

131122
<h2>Payments</h2>
132123

133-
<h4 id="example014">14. <a href="eg014">Send an envelope with an order form and payment field</a></h4>
134-
<p>Anchor text
124+
<h4 id="example014">14. <a href="eg014">Send a request for Accept payments</a></h4>
125+
<p>Sends an order form with online payment by credit card.
126+
Anchor text
135127
(<a target='_blank'
136128
href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>)
137129
is used to position the fields in the documents.
@@ -142,28 +134,27 @@
142134

143135
<h2>Tabs</h2>
144136

145-
<h4 id="example015">15. <a href="eg015">Get the tab data from an envelope</a></h4>
146-
<p>This example retrieves the tab (field) values from an envelope.</p>
137+
<h4 id="example015">15. <a href="eg015">Get envelope tab values</a></h4>
138+
<p>Retrieves the tab (field) values for all of the envelope's recipients.</p>
147139
<p>API method used:
148140
<a target='_blank'
149141
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeformdata/get/">EnvelopeFormData::get</a>.
150142
</p>
151143

152-
<h4 id="example016">16. <a href="eg016">Set tab values for a envelope</a></h4>
153-
<p>This example sets the tab (field) values for an envelope including tabs that can and cannot be changed by the
154-
signer.</p>
144+
<h4 id="example016">16. <a href="eg016">Set envelope tab values</a></h4>
145+
<p>Creates an envelope and sets the initial values for its tabs (fields). Some of the tabs are set to be read-only, others can be updated by the recipient. This example also stores metadata with the envelope.</p>
155146
<p>API method used:
156147
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>.
157148
</p>
158149

159-
<h4 id="example017">17. <a href="eg017">Set template tab values</a></h4>
160-
<p>This example sets the tab (field) values for a template being used by an envelope.</p>
150+
<h4 id="example017">17. <a href="eg017">Set tab values in a template</a></h4>
151+
<p>Creates an envelope using a template and sets the initial values for its tabs (fields). This example also stores metadata with the envelope.</p>
161152
<p>API method used:
162153
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>.
163154
</p>
164155

165-
<h4 id="example018">18. <a href="eg018">List envelope custom metadata field values</a></h4>
166-
<p>This example lists the envelope's custom metadata field values.</p>
156+
<h4 id="example018">18. <a href="eg018">Get envelope custom tab values</a></h4>
157+
<p>Retrieves the custom metadata (custom data fields) stored with the envelope.</p>
167158
<p>API method used:
168159
<a target='_blank'
169160
href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopecustomfields/list/">EnvelopeCustomFields::list</a>.
@@ -199,27 +190,27 @@
199190

200191
<h2>Permissions</h2>
201192

202-
<h4 id="example024">24. <a href="eg024">Creating a permission profile</a></h4>
193+
<h4 id="example024">24. <a href="eg024">Create a permission profile</a></h4>
203194
<p>This code example demonstrates how to create a permission profile with the eSignature REST API. </p>
204195
<p>API methods used:
205196
<a target='_blank'
206197
href="https://developers.docusign.com/docs/esign-rest-api/reference/accounts/accountpermissionprofiles/create/">AccountPermissionProfiles::create</a>.
207198
</p>
208199

209-
<h4 id="example025">25. <a href="eg025">Setting a permission profile</a></h4>
210-
<p>This code example demonstrates how to set a permission profile with the eSignature REST API. </p>
200+
<h4 id="example025">25. <a href="eg025">Set a permission profile</a></h4>
201+
<p>Demonstrates how to set a user group's permission profile. You must have already created a permission profile and a group of users.</p>
211202
<p>API methods used:
212203
<a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/usergroups/groups/update/">Groups::update</a>.
213204
</p>
214205

215-
<h4 id="example026">26. <a href="eg026">Updates the permission profile.</a></h4>
216-
<p>This code example demonstrates how to update a permission profile with the eSignature REST API. </p>
206+
<h4 id="example026">26. <a href="eg026">Update individual permission settings</a></h4>
207+
<p>Demonstrates how to edit individual permission settings on a permission profile.</p>
217208
<p>API method used:
218209
<a target='_blank'
219210
href="https://developers.docusign.com/docs/esign-rest-api/reference/accounts/accountpermissionprofiles/update/">AccountPermissionProfiles::update</a>.
220211
</p>
221212

222-
<h4 id="example027">27. <a href="eg027">Deleting a permission</a></h4>
213+
<h4 id="example027">27. <a href="eg027">Delete a permission profile</a></h4>
223214
<p>This code example demonstrates how to delete a permission profile with the eSignature REST API. </p>
224215
<p>API methods used:
225216
<a target='_blank'
@@ -236,20 +227,20 @@
236227
</p>
237228

238229
<h4 id="example029">29. <a href="eg029">Applying a brand to an envelope</a></h4>
239-
<p>This code example demonstrates how to apply a brand to an envelope with the eSignature REST API.</p>
230+
<p>Demonstrates how to apply a brand you've created to an envelope.</p>
240231
<p>API methods used:
241232
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>
242233
</p>
243234

244-
<h4 id="example030">30. <a href="eg030">Applying a brand to a template</a></h4>
245-
<p>This code example demonstrates how to apply a brand to a template with the eSignature REST API. </p>
235+
<h4 id="example030">30. <a href="eg030">Apply a brand and template to an envelope</a></h4>
236+
<p>Demonstrates how to apply a brand you've created to a template. You must have at least one created template and brand</p>
246237
<p>API methods used:
247238
<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>.
248239
</p>
249240

250241
<h2>Bulk operations</h2>
251242

252-
<h4 id="example031">31. <a href="eg031">Bulk send envelopes</a></h4>
243+
<h4 id="example031">31. <a href="eg031">Bulk-send envelopes</a></h4>
253244
<p>
254245
Demonstrates how to send envelopes in bulk to multiple recipients. First, this example creates a bulk send recipients list,
255246
then creates an envelope. After that, it initiates bulk envelope sending.
@@ -265,27 +256,26 @@
265256

266257
<h2>Advanced recipient routing</h2>
267258

268-
<h4 id="example032">32. <a href="eg032">Pausing a signature workflow</a></h4>
259+
<h4 id="example032">32. <a href="eg032">Pause a signature workflow</a></h4>
269260
<p>
270-
This example creates and envelope and then pauses the signature workflow
261+
Demonstrates how to create an envelope where the workflow is paused before the envelope is sent to a second recipient.
271262
</p>
272263
<p>
273264
API methods used:
274265
<a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>
275266
</p>
276267

277-
<h4 id="example033">33. <a href="eg033">Resuming a signature workflow</a></h4>
268+
<h4 id="example033">33. <a href="eg033">Unpause a signature workflow</a></h4>
278269
<p>
279-
This example resumes a signature workflow for the previously created envelope that was paused.
280-
</p>
270+
Demonstrates how to update an envelope to resume the workflow that has been paused using the Update Envelope method. You must have created at least one envelope with a paused signature workflow to run this example.
281271
<p>
282272
API methods used:
283273
<a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/update/">Envelopes::update</a>
284274
</p>
285275

286-
<h4 id="example034">34. <a href="eg034">Using conditional recipients</a></h4>
276+
<h4 id="example034">34. <a href="eg034">Use conditional recipients</a></h4>
287277
<p>
288-
This example creates an envelope that is routed to different recipients based on a predefined condition.
278+
Demonstrates how to create an envelope where the workflow is routed to different recipients based on the value of a transaction
289279
</p>
290280
<p>
291281
API methods used:
@@ -294,9 +284,9 @@
294284

295285
<h2>Premium features</h2>
296286

297-
<h4 id="example035">35. <a href="eg035">Sending via SMS delivery</a></h4>
287+
<h4 id="example035">35. <a href="eg035">Request a signature by SMS delivery</a></h4>
298288
<p>
299-
This example demonstrates how to send a signature request for a signer (and CC) to read and sign via an SMS message.
289+
Demonstrates how to send a signature request via an SMS message
300290
</p>
301291
<p>
302292
API methods used:

0 commit comments

Comments
 (0)