I pass some api parameter to make the add to cart function. But when I pass the parameter, it shows a failure. Invalid top-level type in JSON write'I know that there is a problem in my passing parameter. Please help me! How to do it. Please help me!
This is the json format of the parameter I'm going through !!:
{
"cartType" : "1",
"cartDetails" : {
"customerID" : "u",
"cartAmount" : "6999",
"cartShipping" : "1",
"cartTax1" : "69",
"cartTax2" : "",
"cartTax3" : "",
"cartCouponCode" : "",
"cartCouponAmount" : "",
"cartPaymentMethod" : "",
"cartProductItems" : {
"productID" : "9",
"productPrice" : "6999",
"productQuantity" : "1"
}
}
}
My updated solution:
func addtocartapicalling ()
{
let headers = [
"cache-control": "no-cache",
"postman-token": "4c933910-0da0-b199-257b-28fb0b5a89ec"
]
let jsonObj:Dictionary<String, Any> = [
"cartType" : "1",
"cartDetails" : [
"customerID" : "sathish",
"cartAmount" : "6999",
"cartShipping" : "1",
"cartTax1" : "69",
"cartTax2" : "",
"cartTax3" : "",
"cartCouponCode" : "",
"cartCouponAmount" : "",
"cartPaymentMethod" : "",
"cartProductItems" : [
"productID" : "9",
"productPrice" : "6999",
"productQuantity" : "1"
]
]
]
if (!JSONSerialization.isValidJSONObject(jsonObj)) {
print("is not a valid json object")
return
}
if let postData = try? JSONSerialization.data(withJSONObject: jsonObj, options: JSONSerialization.WritingOptions.prettyPrinted) {
let request = NSMutableURLRequest(url: NSURL(string: "http://expapi.php")! as URL,
cachePolicy: .useProtocolCachePolicy,timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
} else {
DispatchQueue.main.async(execute: {
if let json = (try? JSONSerialization.jsonObject(with: data!, options: [])) as? Dictionary<String,AnyObject>
{
let status = json["status"] as? Int;
if(status == 1)
{
print("SUCCESS....")
if (json["CartID"] as? Int?) != nil
{
DispatchQueue.main.async(execute: {
print("INSIDE CATEGORIES")
self.addtocartdata.append(Addtocartmodel(json:CartID))
})
}
}
}
})
}
})
dataTask.resume()
}
}
last problem in adding values:

In my model data class, it looks like this:
class Addtocartmodel
{
var cartid : Int?
init(json:NSDictionary)
{
self.cartid = json["CartID"] as? Int
}
}