Skip to content

Commit 4dc4377

Browse files
committed
Fixing the ListEnvelopesService.php example
1 parent ef51924 commit 4dc4377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Services/Examples/eSignature/ListEnvelopesService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ public static function listEnvelopes(array $args, $clientService): EnvelopesInfo
2525
# See https://developers.docusign.com/esign-rest-api/reference/Envelopes/Envelopes/listStatusChanges
2626
# The list status changes call requires at least a from_date OR
2727
# a set of envelope_ids. Here we filter using a from_date.
28-
# Here we set the from_date to filter envelopes for the last 10 days
28+
# Here we set the from_date to filter envelopes for the last 30 days
2929
# Use ISO 8601 date format
3030

3131
#ds-snippet-start:eSign3step2
3232
$envelope_api = $clientService->getEnvelopeApi();
33-
$from_date = date("c", (time() - (10 * 24 * 60 * 60)));
33+
$from_date = date("c", (time() - (30 * 24 * 60 * 60)));
3434
$options = new ListStatusChangesOptions();
3535
$options->setFromDate($from_date);
3636
try {

0 commit comments

Comments
 (0)