File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -49,21 +49,15 @@ const triggerWorkflow = async (workflow, args) => {
4949 const mtsec = triggerUrl . substring ( mtsecIndex + 7 )
5050 const basePath = triggerUrl . substring ( 0 , triggerUrl . indexOf ( "/accounts" ) ) ;
5151
52- console . log ( basePath ) ;
53-
5452 const options = {
5553 mtid : mtid ,
5654 mtsec : mtsec
5755 }
5856
59- console . log ( options ) ;
60-
6157 const dsApiClient = new docusign . ApiClient ( ) ;
6258 dsApiClient . setBasePath ( basePath ) ;
6359 dsApiClient . addDefaultHeader ( 'Authorization' , `Bearer ${ args . accessToken } ` ) ;
6460
65- console . log ( "before call" ) ;
66-
6761 const workflowTriggerApi = new docusign . WorkflowTriggerApi ( dsApiClient ) ;
6862 const response =
6963 await workflowTriggerApi . triggerWorkflow (
@@ -72,8 +66,6 @@ const triggerWorkflow = async (workflow, args) => {
7266 options
7367 ) ;
7468
75- console . log ( response ) ;
76-
7769 return response ;
7870} ;
7971
You can’t perform that action at this time.
0 commit comments