I am trying to insert data into Item doctype using frappeclient but here is a problem that is document field website_image always remain null even if I am trying to insert image link into it
doc ={
"doctype": "Item",
.
.
'image':image_url,
'website_image':image_url,
'thumbnail':image_url,
}
.
.
.
client.insert(doc)
clinet.update(doc) always through an exception of some JSON parsing error.