i got all the parameters jsonEncode then i will pass http post. i have explained below the via source code.
var abc = jsonEncode({
"requisitionID": "x",
"RetailerTitle": "Faruqe Ahmed Store",
"RetailerAddress" : "Dhaka Nilkhet",
"Market": "Nilkhet",
"RetailerAreaType":"R",
"RetailerType":"R",
"RetailerProprieterName": "Faruqe Ahmed",
"RetailerContactNumber": "01736611372",
"Longitude": "Longitude",
"Lattitude": "Lattitude",
"Thana": {"ThanaID": "Shahbag"},
"District": {"DistrictID": "Dhaka"},
"EntryParameter": {"CompanyID": "x"},
"EntryParameter": {"LocationID": "x"},
"EntryParameter": {"MachineID": "x"},
"EntryParameter": {"EntryBy": "D180064"},
"EntryParameter": {"UpdateBy": "x"},
"ImageFieldBanner": ""
}),
but when i get string from print(abc .toString()). then i got only
{
"requisitionID": "x",
"RetailerTitle": "Faruqe Ahmed Store",
"RetailerAddress" : "Dhaka Nilkhet",
"Market": "Nilkhet",
"RetailerAreaType":"R",
"RetailerType":"R",
"RetailerProprieterName": "Faruqe Ahmed",
"RetailerContactNumber": "01736611372",
"Longitude": "Longitude",
"Lattitude": "Lattitude",
"Thana": {"ThanaID": "Shahbag"},
"District": {"DistrictID": "Dhaka"},
"EntryParameter": {"UpdateBy": "x"},
"ImageFieldBanner": ""
}
skip
"EntryParameter": {"CompanyID": "x"},
"EntryParameter": {"LocationID": "x"},
"EntryParameter": {"MachineID": "x"},
"EntryParameter": {"EntryBy": "D180064"},
i need
{
"requisitionID": "x",
"RetailerTitle": "Faruqe Ahmed Store",
"RetailerAddress" : "Dhaka Nilkhet",
"Market": "Nilkhet",
"RetailerAreaType":"R",
"RetailerType":"R",
"RetailerProprieterName": "Faruqe Ahmed",
"RetailerContactNumber": "01736611372",
"Longitude": "Longitude",
"Lattitude": "Lattitude",
"Thana": {"ThanaID": "Shahbag"},
"District": {"DistrictID": "Dhaka"},
"EntryParameter": {"CompanyID": "x"},
"EntryParameter": {"LocationID": "x"},
"EntryParameter": {"MachineID": "x"},
"EntryParameter": {"EntryBy": "D180064"},
"EntryParameter": {"UpdateBy": "x"},
"ImageFieldBanner": ""
}