You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name column in the product CSV should not contain the variant option values.
The variant values are added automatically to the name once already imported.
Take the example product called hi.
Here's how it looks now, notice it shows hi / 13:
Here's how it needs to look:
The fix is to use base_name rather than name from /api/products.
Very cool, good to know about base_name! I'm thinking that I should distinguish between just an export for external usage w/ 3rd party software and an export which will be imported right back into Vend ...
Good point @pulkitsinghal .
I suppose it is useful to keep the format as similar as possible, but you could format the CSV drastically differently if it were better for use by 3rd parties.
id, name, handle, sku, retail_price, tax_name are the only mandatory fields for importing to an inclusive store, for example.
The
name
column in the product CSV should not contain the variant option values.The variant values are added automatically to the name once already imported.
Take the example product called
hi
.Here's how it looks now, notice it shows
hi / 13
:Here's how it needs to look:
The fix is to use
base_name
rather thanname
from /api/products.The text was updated successfully, but these errors were encountered: