forked from docusign/docusign-esign-csharp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Examples.cs
523 lines (450 loc) · 22.2 KB
/
Examples.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
/**
* file: Examples.cs
* start date: 12/8/14
* @author: DocuSign
* descr: Sample C# console application used to illustrate DocuSign .NET Client usage.
**/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Diagnostics;
using DocuSign.Integrations.Client;
// *** NOTE ***
// Please note that the following samples are just for illustration purposes and have been designed
// to be self-contained. It might make sense for you to define some of the local function variables in
// other locations of your application, especially the Integrator Key and webURLs, for instance.
// For other variables it might make sense to pass them as function parameters (ie. templateIds,
// enevelopeIds, recipient data, etc.)
// ************
namespace DocuSignNuGetSamples
{
class TestProgram
{
// Integrator Key and Environment are defined at the application level
// Your Integrator Key can be found in your account Preferences -> API screen.
protected const string IntegratorKey = "***";
// update this once you move into production
protected const string Environment = "http://demo.docusign.net";
static void Main(string[] args)
{
// Example #1...
Console.WriteLine("Testing Walkthrough #1...");
// configure application's integrator key, webservice url, and rest api version
RestSettings.Instance.IntegratorKey = IntegratorKey;
RestSettings.Instance.DocuSignAddress = Environment;
RestSettings.Instance.WebServiceUrl = Environment + "/restapi/v2";
TestProgram test = new TestProgram();
test.SignatureRequestFromTemplate();
Console.ReadLine(); // pause to show console output
}
//==========================================================================================
// *** Walkthrough #1 - Request Signature from Template
//==========================================================================================
private void SignatureRequestFromTemplate()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
string RecipientEmail = "***";
string RecipientName = "***";
string TemplateId = "***";
string TemplateRoleName = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// create envelope object and assign login info
Envelope envelope = new Envelope();
envelope.Login = account;
// use an existing server template
envelope.TemplateId = TemplateId;
// add one signer to a template role identified by roleName
envelope.TemplateRoles = new TemplateRole[]
{
new TemplateRole()
{
email = RecipientEmail,
name = RecipientName,
roleName = TemplateRoleName
}
};
// Email subject is a required parameter when requesting signatures
envelope.EmailSubject = "DocuSign .NET Client - Signature Request from Template";
// "sent" to send immediately, "created" to save envelope as draft
envelope.Status = "sent";
// create and send the envelope (since status is set to "sent")
result = envelope.Create();
if (!result)
{
if (envelope.RestError != null)
{
Console.WriteLine("Error code: {0}\nMessage: {1}", envelope.RestError.errorCode, envelope.RestError.message);
return;
}
else
{
Console.WriteLine("Error encountered while requesting signature from template, please review your envelope and recipient data.");
return;
}
}
else
{
Console.WriteLine("Signature request has been sent to {0}, envelopeId is {1}", envelope.TemplateRoles[0].email, envelope.EnvelopeId);
}
}
//==========================================================================================
// *** Walkthrough #2 - Get Envelope Information
//==========================================================================================
private void GetEnvelopeInformation()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
string EnvelopeId = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// create envelope object and assign login info
Envelope envelope = new Envelope();
envelope.Login = account;
DateTime sentTime = envelope.GetStatus(EnvelopeId);
if (envelope.RestError != null)
{
Console.WriteLine("Error code: {0}\nMessage: {1}", envelope.RestError.errorCode, envelope.RestError.message);
return;
}
Console.WriteLine("Envelope originally sent {0} currently has status: {1}\nEnvelope Email Subject is: {2}", sentTime, envelope.Status, envelope.EmailSubject);
}
//==========================================================================================
// *** Walkthrough #3 - Get Recipient Information
//==========================================================================================
private void GetEnvelopeRecipientInformation()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
string EnvelopeId = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// create envelope object and assign login info
Envelope envelope = new Envelope();
envelope.Login = account;
// set the envelopeId for which we will retrieve recipient info from
envelope.EnvelopeId = EnvelopeId;
// Retrieve envelope recipient names
var recipNames = envelope.GetRecipientNames();
if (envelope.RestError != null)
{
Console.WriteLine("Error code: {0}\nMessage: {1}", envelope.RestError.errorCode, envelope.RestError.message);
return;
}
Console.WriteLine("Envelope contains following recipients:\n");
foreach (var name in recipNames)
{
Console.WriteLine("\t{0}", name);
}
}
//==========================================================================================
// *** Walkthrough #4 - Request Signature on Document
//==========================================================================================
private void SignatureRequestOnDocument()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
string RecipientEmail = "***";
string RecipientName = "***";
string documentPath = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// create envelope object and assign login info
Envelope envelope = new Envelope();
envelope.Login = account;
// add one signer to the envelope
envelope.Recipients = new Recipients()
{
signers = new Signer[]
{
new Signer()
{
email = RecipientEmail,
name = RecipientName,
routingOrder = "1",
recipientId = "1"
}
}
};
// send the envelope immediately (otherwise set to "created" to save as draft envelope)
envelope.Status = "sent";
// email subject is required
envelope.EmailSubject = "DocuSign .NET Client - Signature Request on Document";
// create envelope and send the signature request (since status is set to "sent")
result = envelope.Create(documentPath);
if (!result)
{
if (envelope.RestError != null)
{
Console.WriteLine("Error code: {0}\nMessage: {1}", envelope.RestError.errorCode, envelope.RestError.message);
return;
}
else
{
Console.WriteLine("Error encountered while requesting signature from template, please review your envelope and recipient data.");
return;
}
}
else
{
Console.WriteLine("Signature request has been sent to {0}, envelopeId is {1}.", envelope.Recipients.signers[0].email, envelope.EnvelopeId);
}
}
//==========================================================================================
// *** Walkthrough #6 - Get Documents List and Download Documents
//==========================================================================================
private void GetDocsListAndDownloadDocuments()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
string EnvelopeId = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// create envelope object and assign login info
Envelope envelope = new Envelope();
envelope.Login = account;
// assign the passed in envelope id to the newly created envelope object
envelope.EnvelopeId = EnvelopeId;
// get the envelope's documents
List<EnvelopeDocument> envDocs = envelope.GetDocuments();
// loop through the documents and display some info about them
foreach (var doc in envDocs)
{
Console.WriteLine("Document id {0} is named {1}.", doc.documentId, doc.name);
}
// now let's download the actual document bytes and store in a local file in the application's main directory
string applicationPath = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
byte[] completedDocBytes = envelope.GetCompletedDocument(EnvelopeId, true);
// set local document name here, currently using envelopeID.pdf as name
string localFileName = applicationPath + "\\" + EnvelopeId + ".pdf";
// combine all envelope documents (including certificate) into local PDF file
File.WriteAllBytes(localFileName, completedDocBytes);
Console.WriteLine("Completed documents have been downloaded to {0}", localFileName);
}
//==========================================================================================
// *** Walkthrough #7 - Embedded Sending
//==========================================================================================
private void EmbeddedSending()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
string documentPath = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// create envelope object and assign login info
Envelope envelope = new Envelope();
envelope.Login = account;
// create a new DocuSign envelope (i.e. server side)
envelope.Create(documentPath);
// generate sender view token
result = envelope.GetSenderView("http://www.nuget.org/packages/DocuSign.Integration.Client.dll/");
if (!result)
{
if (envelope.RestError != null)
{
Console.WriteLine("Error code: {0}\nMessage: {1}", envelope.RestError.errorCode, envelope.RestError.message);
return;
}
else
{
Console.WriteLine("Error encountered retrieving signing token, please review your envelope and recipient data.");
return;
}
}
else
{
// open the envelope's sending view
Process.Start(envelope.SenderViewUrl);
}
}
//==========================================================================================
// *** Walkthrough #8 - Embedded Signing
//==========================================================================================
private void EmbeddedSigning()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
string EnvelopeId = "***";
string RecipientEmail = "***";
string RecipientName = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// create envelope object and assign login info
Envelope envelope = new Envelope();
envelope.Login = account;
// assign the envelope id that was passed in
envelope.EnvelopeId = EnvelopeId;
// add one signer (single recipient embedded signing currently supported in DocuSign .NET Client)
envelope.Recipients = new Recipients()
{
signers = new Signer[]
{
new Signer()
{
email = RecipientEmail,
name = RecipientName,
recipientId = "1"
}
}
};
// generate the recipient view token
result = envelope.GetRecipientView("http://www.nuget.org/packages/DocuSign.Integration.Client.dll/");
if (!result)
{
if (envelope.RestError != null)
{
Console.WriteLine("Error code: {0}\nMessage: {1}", envelope.RestError.errorCode, envelope.RestError.message);
return;
}
else
{
Console.WriteLine("Error encountered retrieving signing token, please review your envelope and recipient data.");
return;
}
}
else
{
// open the recipient view (SenderViewUrl field is re-used for the recipient URL)
Process.Start(envelope.SenderViewUrl);
}
}
//==========================================================================================
// *** Walkthrough #9 - Embedded DocuSign Console
//==========================================================================================
private void EmbeddedDocuSignConsole()
{
//*****************************************************************
// ENTER VALUES FOR FOLLOWING VARIABLES!
//*****************************************************************
string AccountEmail = "***";
string AccountPassword = "***";
//*****************************************************************
// user credentials
Account account = new Account();
account.Email = AccountEmail;
account.Password = AccountPassword;
// make the login call (retrieves your baseUrl and accountId)
bool result = account.Login();
if (!result)
{
Console.WriteLine("Login API call failed for user {0}.\nError Code: {1}\nMessage: {2}", account.Email, account.RestError.errorCode, account.RestError.message);
return;
}
// generate user console URL
result = account.GetUserConsoleView();
if (!result)
{
if (account.RestError != null)
{
Console.WriteLine("Error code: {0}\nMessage: {1}", account.RestError.errorCode, account.RestError.message);
return;
}
else
{
Console.WriteLine("Error encountered retrieving signing token, please review your envelope and recipient data.");
return;
}
}
else
{
// open the DocuSign Console View
Process.Start(account.ConsoleUrl);
}
}
}
}