Skip to content

Commit 3774e14

Browse files
committed
Fix workflow creation
1 parent 5f2862c commit 3774e14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/docusign/controller/maestro/services/CreateWorkflowService.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,13 @@ private static Map<String, Object> PrepareVariables(String triggerId) {
135135
prepareProperty("step", "ccEmail", triggerId));
136136
variables.put(
137137
"envelopeId_step2",
138-
prepareProperty("step", "envelopeId", "step2"));
138+
prepareProperty("step", "envelopeId", "step2", "String"));
139139
variables.put(
140140
"combinedDocumentsBase64_step2",
141-
prepareProperty("step", "combinedDocumentsBase64", "step2"));
141+
prepareProperty("step", "combinedDocumentsBase64", "step2", "File"));
142142
variables.put(
143143
"fields.signer.text.value_step2",
144-
prepareProperty("step", "fields.signer.text.value", "step2"));
144+
prepareProperty("step", "fields.signer.text.value", "step2", "String"));
145145

146146
return variables;
147147
}

0 commit comments

Comments
 (0)