File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,23 @@ const listCustomFields = async (args) => {
1717 // args.accountId
1818 // args.envelopeId
1919
20+ //ds-snippet-start:eSign18Step2
2021 let dsApiClient = new docusign . ApiClient ( ) ;
2122 dsApiClient . setBasePath ( args . basePath ) ;
2223 dsApiClient . addDefaultHeader ( "Authorization" , "Bearer " + args . accessToken ) ;
2324 let envelopesApi = new docusign . EnvelopesApi ( dsApiClient ) ,
2425 results = null ;
26+ //ds-snippet-end:eSign18Step2
2527
2628 // Step 1. Call EnvelopeCustomFields::get
2729 // Exceptions will be caught by the calling function
30+ //ds-snippet-start:eSign18Step3
2831 results = await envelopesApi . listCustomFields (
2932 args . accountId ,
3033 args . envelopeId ,
3134 null
3235 ) ;
36+ //ds-snippet-end:eSign18Step3
3337 return results ;
3438} ;
3539
You can’t perform that action at this time.
0 commit comments