0
votes

I setup a custom DocuSign envelope field set up to identify specific envelops. But the GET request simply ignores the filter and returns all envelopes in the response.

What am I doing wrong? Here is the URL:

GET https://demo.docusign.net/restapi/v2/accounts/1234567/envelopes?from_date=2018-01-01&PowerForm=RPT2019

1
i figured it out. Request url should be in below format GET demo.docusign.net/restapi/v2/accounts/1234567/… - Harrie Kurimineni
Can you please paste you comment as an answer so that its beneficial for others? - Amit K Bist

1 Answers

0
votes

You are missing the parameter "custom_field", correct url is:

https://demo.docusign.net/restapi/v2/accounts/1234567/envelopes?from_date=2018-01-01&custom_field=PowerForm=RPT2019 as indicatated in comment on question.