Essentially I have a file with a list of products I would like to add to my shopify store, I'm fairly certain it's formatted correctly although if it isn't please tell me what to fix. I was wondering how using a POST request through a private app I could get these onto my store. The file looks like this:
{
"product": {
"title": "TITLE HERE",
"body_html": "DESCRIPTION HERE",
"vendor": "VENDOR HERE",
"product_type": "PRODUCT TYPE HERE",
"variants": {
"option1": "Default",
"price": "PRICE HERE"
},
"images": {
"src": "LINK TO IMAGE HERE"
}
},
"product": {
"title": "TITLE HERE",
"body_html": "DESCRIPTION HERE",
"vendor": "VENDOR HERE",
"product_type": "PRODUCT TYPE HERE",
"variants": {
"option1": "Default",
"price": "PRICE HERE"
},
"images": {
"src": "LINK TO IMAGE HERE"
}
},
"product": {
"title": "TITLE HERE",
"body_html": "DESCRIPTION HERE",
"vendor": "VENDOR HERE",
"product_type": "PRODUCT TYPE HERE",
"variants": {
"option1": "Default",
"price": "PRICE HERE"
},
"images": {
"src": "LINK TO IMAGE HERE"
}
},
and so on... This file is named "products.json". Is there any POST request that would allow me to just submit this file, or would I have to process and break it down somehow and feed it to the API using PHP or Ruby...I spent the greater part of a day extracting all 500+ products out of a corrupted MySQL CMS backup and getting them all cleaned up in JSON (using PHP and some regex), so a pain free solution would be much appreciated.
productkeys maybe you should use an array instead. – Musa Jul 24 '12 at 8:07productkey to anything else the shopify API won't recognize the format and throw an error. I tried to emulate the format found in the docs here. Maybe you could take a look and let me know how I should format it. – pootieman Jul 24 '12 at 8:11json_decodein PHP, but can an associative array have multiple elements with the same key? How does that work? Sorry if it's a dumb question, I don't do this type of stuff normally... – pootieman Jul 24 '12 at 8:18productobject. So it looks like you can only have 1 product but it can have multiple variants, also what @ftom2 suggests will give you a different format than what it shows in the link. – Musa Jul 24 '12 at 8:20