You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
com.docusign.esign.client.ApiException: Error while requesting server, received a non successful HTTP code 400 with response Body: '{
"errorCode": "INVALID_REQUEST_PARAMETER",
"message": "The request contained at least one invalid parameter. Query parameter 'from_date' must be set to a valid DateTime, or 'envelope_ids' or 'transaction_ids' must be specified."
}'
From tracking this through the java client guts with the debugger, it looks to me like the EnvelopeIdsRequest is not getting properly serialized and not included with the request. It's there in the Docusign client code, but somewhere in Jersey it doesn't get written when the PUT is actually executed.
I wonder if this may be a similar underlying issue to #154? I also noticed a couple of comments from this past May on an old issue documenting the same problem: #76
I have tried this with both 2.15 and 3.6 of the Docusign client and had the same issue with both of them.
Thanks for any assistance!
Mark
The text was updated successfully, but these errors were encountered:
Then it works. However, the third param I believe is documented as being optional as things stand (at least in 2.15) and it feels kind of counter intuitive to be required to pass configuration in an optional third param in order to make the second param work.
(I pulled the code from looking at the unit tests associated with this ;) )
Wow! This is definitely an interesting one! I suggest to fix the API not the docs. This would have taken me days to work that out, I'm so glad I found this issue!
In the docs there should be a warning or some example showing that this is required!
Hello!
The following code always produces a 400 error:
From tracking this through the java client guts with the debugger, it looks to me like the
EnvelopeIdsRequest
is not getting properly serialized and not included with the request. It's there in the Docusign client code, but somewhere in Jersey it doesn't get written when the PUT is actually executed.I wonder if this may be a similar underlying issue to #154? I also noticed a couple of comments from this past May on an old issue documenting the same problem: #76
I have tried this with both 2.15 and 3.6 of the Docusign client and had the same issue with both of them.
Thanks for any assistance!
Mark
The text was updated successfully, but these errors were encountered: