API Bulk Product Import

Hey, looks like you’re passing your optionValues in a String instead of an Array

You’re using

"optionValues": "[{\"optionName\":\"Size\",\"name\":\"S\"}]"

instead of

"optionValues": [
  {"optionName": "Size", "name": "L"}
]