Skip to content

Commit

Permalink
Update AdobeSignService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ntqdinh-axonivy committed Oct 3, 2023
1 parent dd4d5da commit ff3b451
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public class AdobeSignService {
private static final String UPLOAD_SIGNATURE = "uploadDocument(UploadWrapper)";
private static final String DOWNLOAD_SIGNATURE = "dowloadDocument(String, String, String, Boolean)";
private static final String SIGNING_URL_SIGNATURE = "getSigningURLs(String,String)";
private static final String FORMFIELD_SIGNATURE = "addFormFields(String, FormFieldPutInfo)";
private static final String ID_PARAM = "id";
private static final String ERROR_PARAM = "error";
private static final String UPLOAD_PARAM = "upload";
Expand Down Expand Up @@ -320,6 +321,7 @@ public DownloadResult downloadDocument(String agreementId, String documentId, St
*/
public void addFormFieldsToAgreement(String agreementId, FormFieldPutInfo formFieldInfo) {
SubProcessCallResult callResult = SubProcessCall.withPath(AGREEMENTS_SERVICE)
.withStartSignature(FORMFIELD_SIGNATURE)
.withParam("agreementId", agreementId)
.withParam("formFieldInfo", formFieldInfo)
.call();
Expand Down

0 comments on commit ff3b451

Please sign in to comment.