Problem adding a Product to the Wix Store

Trying to add a New Product to the Store and even though I am passing a valid image URL, keep getting this error and no image

mainMedia:
“wix:image://v1/614034_103e8f4ab0ae4536a38b319d3eb437ed~mv2.png/missing-media.png#originWidth=500&originHeight=500”

const myProduct = {
“name” : $w ( “#productSelected” ). text ,
“description” : fullDesc_str ,

“price” : parseFloat ( $w ( “#totalPrice” ). value ),
“sku” : sku ,
“visible” : true ,
“productType” : “physical” ,
“mainMedia” : $w ( “#mainImage” ). src ,

“customTextFields” : [ {
“title” : “Name of the field” ,
“maxLength” : “500”
}
],