Beispiel #1
0
        public string createEnvelope(string body)
        {
            Essentials essen          = new Essentials();
            string     responseString = essen.sendRequest("POST", AuthId, AuthKey, BaseUrl + "/v1/envelopes/", body);

            return(responseString);
        }
Beispiel #2
0
        public string getList()
        {
            Essentials essen          = new Essentials();
            string     responseString = essen.sendRequest("GET", AuthId, AuthKey, BaseUrl + "/v1/envelopes");

            return(responseString);
        }
Beispiel #3
0
        public string voidEnvelope(string id)
        {
            Essentials essen          = new Essentials();
            string     responseString = essen.sendRequest("POST", AuthId, AuthKey, BaseUrl + "/v1/envelopes/" + id + "/void");

            return(responseString);
        }
Beispiel #4
0
        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);
        }