Skip to content

Commit 551e230

Browse files
committed
Update README.md
1 parent 046b4fa commit 551e230

File tree

1 file changed

+31
-15
lines changed

1 file changed

+31
-15
lines changed

README.md

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,49 @@ This repo is a Node.JS application that demonstrates:
88
[Authorization Code Grant flow](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant).
99
When the token expires, the user is asked to re-authenticate.
1010
The **refresh token** is not used in this example.
11-
1. Embedded Signing Ceremony.
11+
1. **Embedded Signing Ceremony.**
12+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg001EmbeddedSigning.js)
1213
This example sends an envelope, and then uses an embedded signing ceremony for the first signer.
1314
With embedded signing, the DocuSign signing ceremony is initiated from your website.
14-
1. Send an envelope with a remote (email) signer and cc recipient.
15+
1. **Send an envelope with a remote (email) signer and cc recipient.**
16+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg002SigningViaEmail.js)
1517
The envelope includes a pdf, Word, and HTML document.
1618
Anchor text ([AutoPlace](https://support.docusign.com/en/guides/AutoPlace-New-DocuSign-Experience)) is used to position the signing fields in the documents.
17-
1. List envelopes in the user's account.
18-
1. Get an envelope's basic information.
19+
1. **List envelopes in the user's account.**
20+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg003ListEnvelopes.js)
21+
1. **Get an envelope's basic information.**
22+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg004EnvelopeInfo.js)
1923
The example lists the basic information about an envelope, including its overall status.
20-
1. List an envelope's recipients and their current status.
21-
1. List an envelope's documents.
22-
1. Download an envelope's documents. The example can download individual
24+
1. **List an envelope's recipients**
25+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg005EnvelopeRecipients.js)
26+
Includes current recipient status.
27+
1. **List an envelope's documents.**
28+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg006EnvelopeDocs.js)
29+
1. **Download an envelope's documents.**
30+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg007EnvelopeGetDoc.js)
31+
The example can download individual
2332
documents, the documents concatenated together, or a zip file of the documents.
24-
1. Programmatically create a template.
25-
1. Send an envelope using a template.
26-
1. Send an envelope and upload its documents with multpart binary transfer.
33+
1. **Programmatically create a template.**
34+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg008CreateTemplate.js)
35+
1. **Send an envelope using a template.**
36+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg009UseTemplate.js)
37+
1. **Send an envelope and upload its documents with multpart binary transfer.**
38+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg010SendBinaryDocs.js)
2739
Binary transfer is 33% more efficient than using Base64 encoding.
28-
1. Embedded sending.
29-
1. Embedded DocuSign web tool (NDSE).
30-
1. Embedded Signing Ceremony from a template with an added document.
40+
1. **Embedded sending.**
41+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg011EmbeddedSending.js)
42+
Embeds the DocuSign web tool (NDSE) in your web app to finalize the envelope and documents before they are sent.
43+
1. **Embedded DocuSign web tool (NDSE).**
44+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg012EmbeddedConsole.js)
45+
1. **Embedded Signing Ceremony from a template with an added document.**
46+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg013AddDocToTemplate.js)
3147
This example sends an envelope based on a template.
3248
In addition to the template's document(s), the example adds an
3349
additional document to the envelope by using the
3450
[Composite Templates](https://developers.docusign.com/esign-rest-api/guides/features/templates#composite-templates)
3551
feature.
36-
1. Payments example: an order form, with online payment by credit card,
37-
is sent to the signer.
52+
1. **Payments example: an order form, with online payment by credit card.**
53+
[Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg014CollectPayment.js)
3854

3955
## Installation
4056

0 commit comments

Comments
 (0)