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?
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?
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