See All transactions
Thursday, October 15, 2020 at 12:23pmI am trying to list all transactions that have been done but in my GET https://sandbox.esignlive.com/api/packages I only am getting the last transaction. It does not bring all of them. I am wondering if there is any id or role name I need to change for every transaction I post?
Thanks!
Reply to: See All transactions
Thursday, October 15, 2020 at 12:56pmI added the to and from in my request and now it works:
https://sandbox.esignlive.com/api/packages?from=1&to=40
Reply to: See All transactions
Thursday, October 15, 2020 at 01:22pmHi Luana,
Glad you figured it out. Here are some of my tips regarding to package retrieval API:
Below are some of the most frequently used parameters for this API:
query: ARCHIVED, COMPLETED, DRAFT, SENT, TRASHED.
(1)Trashed is not a package status, but it's listed here as an option because the trashed packages won't be returned by this API by default
(2)Draft option returns packages in Draft, Expired, Declined, Opted_Out statuses.
from: Used for pagination.
to: Used for pagination. (Note: A maximum of 100 packages can be returned)
lastUpdatedStartDate: The date after which the package last updated to be retrieved (e.g. 2019-01-01).
lastUpdatedEndDate: The date before which the package last updated to be retrieved (e.g. 2019-12-31).
Duo