|
1 | | -# API Authorization Code Grant Examples with Curl |
| 1 | +# API code examples with Curl |
2 | 2 |
|
3 | 3 | ### Github repo: eg-03-curl |
4 | 4 | ## Introduction |
5 | | -This repo includes bash scripts that use curl to demonstrate": |
| 5 | +This repo includes bash scripts that use curl to demonstrate: |
6 | 6 |
|
7 | 7 | 1. **Embedded Signing Ceremony.** |
8 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg001EmbeddedSigning.js) |
| 8 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg001EmbeddedSigning.sh) |
9 | 9 | This example sends an envelope, and then uses an embedded signing ceremony for the first signer. |
10 | 10 | With embedded signing, the DocuSign signing ceremony is initiated from your website. |
11 | 11 | 1. **Send an envelope with a remote (email) signer and cc recipient.** |
12 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg002SigningViaEmail.js) |
| 12 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg002SigningViaEmail.sh) |
13 | 13 | The envelope includes a pdf, Word, and HTML document. |
14 | 14 | Anchor text ([AutoPlace](https://support.docusign.com/en/guides/AutoPlace-New-DocuSign-Experience)) is used to position the signing fields in the documents. |
15 | 15 | 1. **List envelopes in the user's account.** |
16 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg003ListEnvelopes.js) |
| 16 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg003ListEnvelopes.sh) |
17 | 17 | 1. **Get an envelope's basic information.** |
18 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg004EnvelopeInfo.js) |
| 18 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg004EnvelopeInfo.sh) |
19 | 19 | The example lists the basic information about an envelope, including its overall status. |
20 | 20 | 1. **List an envelope's recipients** |
21 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg005EnvelopeRecipients.js) |
| 21 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg005EnvelopeRecipients.sh) |
22 | 22 | Includes current recipient status. |
23 | 23 | 1. **List an envelope's documents.** |
24 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg006EnvelopeDocs.js) |
| 24 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg006EnvelopeDocs.sh) |
25 | 25 | 1. **Download an envelope's documents.** |
26 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg007EnvelopeGetDoc.js) |
| 26 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg007EnvelopeGetDoc.sh) |
27 | 27 | The example can download individual |
28 | 28 | documents, the documents concatenated together, or a zip file of the documents. |
29 | 29 | 1. **Programmatically create a template.** |
30 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg008CreateTemplate.js) |
| 30 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg008CreateTemplate.sh) |
31 | 31 | 1. **Send an envelope using a template.** |
32 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg009UseTemplate.js) |
| 32 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg009UseTemplate.sh) |
33 | 33 | 1. **Send an envelope and upload its documents with multpart binary transfer.** |
34 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg010SendBinaryDocs.js) |
| 34 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg010SendBinaryDocs.sh) |
35 | 35 | Binary transfer is 33% more efficient than using Base64 encoding. |
36 | 36 | 1. **Embedded sending.** |
37 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg011EmbeddedSending.js) |
| 37 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg011EmbeddedSending.sh) |
38 | 38 | Embeds the DocuSign web tool (NDSE) in your web app to finalize or update |
39 | 39 | the envelope and documents before they are sent. |
40 | 40 | 1. **Embedded DocuSign web tool (NDSE).** |
41 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg012EmbeddedConsole.js) |
| 41 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg012EmbeddedConsole.sh) |
42 | 42 | 1. **Embedded Signing Ceremony from a template with an added document.** |
43 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg013AddDocToTemplate.js) |
| 43 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg013AddDocToTemplate.sh) |
44 | 44 | This example sends an envelope based on a template. |
45 | 45 | In addition to the template's document(s), the example adds an |
46 | 46 | additional document to the envelope by using the |
47 | 47 | [Composite Templates](https://developers.docusign.com/esign-rest-api/guides/features/templates#composite-templates) |
48 | 48 | feature. |
49 | 49 | 1. **Payments example: an order form, with online payment by credit card.** |
50 | | - [Source.](https://github.com/docusign/eg-03-node-auth-code-grant/blob/master/lib/examples/eg014CollectPayment.js) |
| 50 | + [Source.](https://github.com/LarryKlugerDS/eg-03-curl/blob/master/examples/eg014CollectPayment.sh) |
51 | 51 |
|
52 | 52 | ## Installation |
53 | 53 |
|
|
0 commit comments