Step 2: Import Basic Product Data
The system supports a single feed with the ID master for product imports.
Reserved Fields:
| Field | Description |
|---|---|
| __ID | Unique product identifier |
| __Name | Product title |
| PRIMARY_ASSET | Product thumbnail image displayed |
| PACKAGING | Array of child packaging links |
| QUANTITY | Packaging link quantity |
| __FAMILY | Optional for grouping product families |
| __CATEGORY | Optional master data categorization |
Auto-Creation:
Any non-reserved attributes included in the payload will be automatically created as "string" type attributes in PDX if they do not already exist.
Multi-value attribution:
Multi-valued attributes included in the payload must have values sent within an array. Example Request: POST /api/import/v1/feeds/master JSON
Example Request:
POST /api/import/v1/feeds/master
{
"products": [
{
"__ID": "WIDGET-100",
"__NAME": "Blue Widget",
"Weight": "10 g",
"Description": "A standard blue industrial widget.",
"Country_Origin":[“GB”,”CA”,”FR”]
}
]
}