0

I am passing comma separated list of envelope ids into listStatusChanges api of docusign. For 53 records I am getting response but for 54th envelope id I am not getting response.

Is there any limit on passing number of envelope ids?

Praveen Reddy
  • 7,295
  • 2
  • 21
  • 43
Jack
  • 75
  • 4
  • What do you mean by you're getting a response for 53 but not for 54? Please show more details like the requests you're making and the response you are getting. – Ergin Oct 16 '16 at 23:13
  • Duplicate of http://stackoverflow.com/questions/41713964/liststatuschanges-api-gives-error-after-passing-more-than-50-envelopeids – Praveen Reddy Jan 18 '17 at 10:33

1 Answers1

0

Web servers and browsers usually limit the length of HTTP get requests. See a more detailed explaination here.

Since the envelopeId is a GUID, adding more than 50 guids results in a long query string that will hit the webserver limit.

I suggest you use other query parameters like from_date specified in the documentation

Community
  • 1
  • 1
Praveen Reddy
  • 7,295
  • 2
  • 21
  • 43