Как мы можем передать значение в раздел деталей ниже Josn
Файл JSON
{
"firstName": "JB000123",
"LASTNAme": "SHP0000123",
"details": [
{
"a": "Full Trucking Load",
"b": "2",
"c": "USD"
},
{
"a": "Ocean Freight",
"b": "2",
"c": "USD"
}
]
}
Как добавить записи в детали Детали
var client = new RestClient(URL);
client.Authenticator = new HttpBasicAuthenticator(Username, Password);
var request = new RestRequest("/xyz/xyzz/", Method.POST);
request.AddParameter("firstName", "Test");
request.AddParameter("LASTNAme", "Tets Last Name");
request.AddParameter("details", ???);
IRestResponse response = client.Execute(request);
var content = response.Content;