Step 2: Import Basic Product Data

The system supports a single feed with the ID master for product imports.

Reserved Fields:

FieldDescription
__IDUnique product identifier
__NameProduct title
PRIMARY_ASSETProduct thumbnail image displayed
PACKAGINGArray of child packaging links
QUANTITYPackaging link quantity
__FAMILYOptional for grouping product families
__CATEGORYOptional 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”]
    }
  ]
}