{% if mode == "import" %} Import Items From CSV {% elif mode == "edit" %} Update Items Using CSV {% endif %}
Errors found during submission:
-
{% for message in messages %}
- {{ message }} {% endfor %}
Your CSV must include these columns (case-sensitive):
-
{% for attrib in item_attributes %}
-
{{ attrib.display_name }}
{% if attrib.required %}Required{% endif %} {% if attrib.primary %}Primary{% endif %} {% if attrib.unique %}Unique{% endif %}
{% endfor %}
Format requirements:
Download CSV Template
- Delimiter:
|
(pipe character) - First row must contain headers exactly as shown above {% if mode == "edit" %}
- Existing items must include their primary key value {% endif %}