public string createEnvelope(string body) { Essentials essen = new Essentials(); string responseString = essen.sendRequest("POST", AuthId, AuthKey, BaseUrl + "/v1/envelopes/", body); return(responseString); }
public string getList() { Essentials essen = new Essentials(); string responseString = essen.sendRequest("GET", AuthId, AuthKey, BaseUrl + "/v1/envelopes"); return(responseString); }
public string voidEnvelope(string id) { Essentials essen = new Essentials(); string responseString = essen.sendRequest("POST", AuthId, AuthKey, BaseUrl + "/v1/envelopes/" + id + "/void"); return(responseString); }
public string updateRecipient(string id, string body) { Essentials essen = new Essentials(); string responseString = essen.sendRequest("PUT", AuthId, AuthKey, BaseUrl + "/v1/recipients/" + id, body); return(responseString); }