Skip to content

Commit 11be922

Browse files
committed
fixed date format for esign 3
1 parent 1cdff83 commit 11be922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

launcher-csharp/eSignature/Examples/ListAccountEnvelopes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static EnvelopesInformation ListAllEnvelope(string accessToken, string ba
3232
EnvelopesApi envelopesApi = new EnvelopesApi(docuSignClient);
3333

3434
ListStatusChangesOptions options = new ListStatusChangesOptions();
35-
options.fromDate = DateTime.Now.AddDays(-30).ToString("yyyy/MM/dd");
35+
options.fromDate = DateTime.Now.AddDays(-30).ToString("yyyy-MM-dd");
3636

3737
// Call the API method:
3838
EnvelopesInformation results = envelopesApi.ListStatusChanges(accountId, options);

0 commit comments

Comments
 (0)