-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ListStatusWithHttpInfo operation in EnvelopesApi.cs #301
Comments
This issue also exists in the 'ListStatusAsyncWithHttpInfo' operation. Could someone please make this change in the next release? This is a highly used operation to list out envelopes sent from a particular user and we can't use it because these operations are trying to perform a PUT method instead of a GET |
Hi @jmitola , I think this is what you are looking for https://github.com/docusign/docusign-csharp-client/blob/master/test/SdkNetCoreTests/JwtAuthNetCoreUnitTests.cs#L229 ?
https://developers.docusign.com/docs/esign-rest-api/reference/Envelopes/Envelopes/listStatusChanges/ |
<!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
font-size:11.0pt;
font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:blue;
text-decoration:underline;}
code
{mso-style-priority:99;
font-family:"Courier New";}
.MsoChpDefault
{mso-style-type:export-only;}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
{page:WordSection1;}
-->Thanks Bharat, That did work. However, I still think the ListStatusWithHttpInfo operation should be a GET method. Even the name suggests it and all the other PUT methods are labeled as such. Plus, if you try and call it, it always returns in error because it is trying to do a PUT operation. Thanks for suggesting the alternative though, I will change my code to use the ListStatusChanges operation. Joe Joseph A. Mitola, Information Systems AnalystUniversity of California, BerkeleyIST - Enterprise Applications2195 Hearst Avenue, 250-29Berkeley, CA [email protected] From: Bharat ReleSent: Thursday, October 22, 2020 2:29 PMTo: docusign/docusign-csharp-clientCc: jmitola; MentionSubject: Re: [docusign/docusign-csharp-client] ListStatusWithHttpInfo operation in EnvelopesApi.cs (#301) Hi @jmitola , I think this is what you are looking for https://github.com/docusign/docusign-csharp-client/blob/master/test/SdkNetCoreTests/JwtAuthNetCoreUnitTests.cs#L229 ?ListStatusChanges is a GET methodhttps://developers.docusign.com/docs/esign-rest-api/reference/Envelopes/Envelopes/listStatusChanges/—You are receiving this because you were mentioned.Reply to this email directly, view it on GitHub, or unsubscribe.
|
In the operation 'ListStatusWithHttpInfo', the HTTP method is set to 'PUT'. It should be 'GET'.
Leaving it as 'PUT' is causing an HTTP status 400 Bad Request
The text was updated successfully, but these errors were encountered: