Skip to content

Commit 28e3268

Browse files
committed
Fixing DateTime format in ListAccountEnvelopes.cs code example
1 parent 1cdff83 commit 28e3268

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)