Skip to content

Commit cf7c7b5

Browse files
committed
changed date format for esign 3
1 parent 97b6289 commit cf7c7b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/docusign/controller/eSignature/services/ListEnvelopesServices.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public final class ListEnvelopesServices {
1313
public static EnvelopesInformation listEnvelopes(EnvelopesApi envelopesApi, String accountId) throws ApiException {
1414
EnvelopesApi.ListStatusChangesOptions options = envelopesApi.new ListStatusChangesOptions();
1515
LocalDate date = LocalDate.now().minusDays(FROM_DATE_OFFSET_DAYS);
16-
options.setFromDate(DateUtils.DATE_WITH_SLASH.format(date));
16+
options.setFromDate(DateUtils.DATE_WITH_LINES.format(date));
1717
return envelopesApi.listStatusChanges(accountId, options);
1818
}
1919
}

0 commit comments

Comments
 (0)