Reputation: 545
I am making query for the rest API for getting all envelopes.
When I query using envelop list changes with proper from date and to date and account id
It gives me only 1st and last document as below.
Upvotes: 3
Views: 5286
Reputation: 7383
You can use the GetSearchFolders api to retrieve all the envelopes
Example: The following GET request retrieves all the envelopes in the last 30 days.
GET /v2/accounts/{accountId}/search_folders/all
Other Search Folder Queries.
GET /v2/accounts/{accountId}/search_folders/drafts
GET /v2/accounts/{accountId}/search_folders/awaiting_my_signature
GET /v2/accounts/{accountId}/search_folders/completed
GET /v2/accounts/{accountId}/search_folders/out_for_signature
Upvotes: 5