Esempio n. 1
0
 public async Task <string> UpdateOrderNote(int orderid, int noteid, OrderNote n, Dictionary <string, string> parms = null)
 {
     return(await API.SendHttpClientRequest("orders/" + orderid.ToString() + "/notes/" + noteid.ToString(), RequestMethod.PUT, n, parms));
 }
Esempio n. 2
0
 public async Task <string> UpdateOrderNote(int orderid, int noteid, OrderNote n, Dictionary <string, string> parms = null)
 {
     return(await API.PutRestful("orders/" + orderid.ToString() + "/notes/" + noteid.ToString(), new { order_note = n }, parms));
 }