{% extends "vend/_layouts/settings" %} {% import "_includes/forms" as forms %} {% block content %}
To set up your feeds below is a table of all the applicable feed URLs with notes on what they do.
You should set up at least 3 feeds, the first to pull in the main product database from Vend into the Vend Products section. The second to do the same but with the Vend inventory data. Finally you should then set up at least one feed to import that data into Commerce as products. You can also use Import Profiles to filter the main product database allowing you to import sub-sets of the data into different Commerce product types.
| Feed Purpose | Feed URL | Notes |
|---|---|---|
| Vend products | {{ forms.textField({ class: 'code', value: actionUrl('vend/products/list'), }) }} | This feed should import all products from Vend into the dedicated Vend Products section as entries. |
| Vend inventory | {{ forms.textField({ class: 'code', value: actionUrl('vend/products/inventory'), }) }} | This feed is for specifically importing the inventory of all Vend products into the dedicated Vend Products section. |
| Vend composites | {{ forms.textField({ class: 'code', value: actionUrl('vend/products/composites'), }) }} | This feed is for specifically importing the composite product data into the dedicated Vend Products section. |
| Commerce products | {{ forms.textField({ class: 'code', value: actionUrl('vend/products/import'), }) }} | This is your main Commerce product import feed - it takes the entries created from the first two feeds and creates products in Commerce. |
| Commerce product feeds for each import profile | ||
| {{ importProfile.name }} | {{ forms.textField({ class: 'code', value: actionUrl('vend/products/import', {profile: importProfile.handle}), }) }} | Specific Commerce product import for the {{ importProfile.name }} import profile. |