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
{{ message }}
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
Add the ability to use the "query" parameter for ListSignatureRequests requests.
Workaround:
You can use a requests library to build a raw HTTP request and send it through like that. An example using RestSharp:
static void querySignatureRequests(string apiKey)
{
var key = apiKey;
var httpClient = new RestClient("https://:@api.hellosign.com/v3/");
httpClient.Authenticator = new RestSharp.Authenticators.HttpBasicAuthenticator(key, "");
string urlString = "signature_request/list/?query=created:[2020-07-15+TO+2020-07-15]";
var request = new RestRequest(urlString);
IRestResponse response = httpClient.Execute(request);
var status = response.Content;
Console.WriteLine(status);
}
Related ticket number: 386925
Internal reference number: 10330
The text was updated successfully, but these errors were encountered:
I've added this support locally (I guess I could have used the "AdditionalParameters" but this was easier). However, searching doesn't work, my query looks like this "complete:false+AND+declined:false" and it fails all the time. Is their online documentation just bogus? Are there supposed to be "+" signs between the "AND/OR" conditions?
Add the ability to use the "query" parameter for ListSignatureRequests requests.
Workaround:
You can use a requests library to build a raw HTTP request and send it through like that. An example using RestSharp:
Related ticket number: 386925
Internal reference number: 10330
The text was updated successfully, but these errors were encountered: