Manish Pansiniya
Manish Pansiniya

Reputation: 545

Docusign REST API: Get all Envelope

I am making query for the rest API for getting all envelopes.

Following are documents in UI enter image description here

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.

enter image description here

Upvotes: 3

Views: 5286

Answers (1)

Praveen Reddy
Praveen Reddy

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

Related Questions