Skip to content

Commit

Permalink
Fixing date format in eg003_list_envelopes_service.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
InbarGazit committed Feb 22, 2024
1 parent 24774b7 commit 8744f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/e_sign/eg003_list_envelopes_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def worker
#ds-snippet-start:eSign3Step2
envelope_api = create_envelope_api(args)
options = DocuSign_eSign::ListStatusChangesOptions.new
options.from_date = (Date.today - 30).strftime('%Y/%m/%d')
options.from_date = (Date.today - 30).strftime('%Y-%m-%d')
# Exceptions will be caught by the calling function
envelope_api.list_status_changes args[:account_id], options
#ds-snippet-end:eSign3Step2
Expand Down

0 comments on commit 8744f6b

Please sign in to comment.