Hi all,
is it possible to use API2 client.PostAsync to post several records from a json serialised object?
or have I got to go round in a loop and post 1 record at a time?
something like this (not working):
var serialisedMeasureList = JsonConvert.SerializeObject(recsforTR_IDList,Formatting.Indented);
var client = newHttpClient();
var url = string.Format("{0}/api/MEASURE_CAPTURE1/PutByTR_ID", APIConnection);
var response = client.PostAsync(url, serialisedMeasureList).Result;
many thanks
Stew