예제 #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));
 }
예제 #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));
 }