/
Shopify settings step

Shopify settings step

Product Catalog:

save the step date in Table: ie_app_automation_steps_config in column otherDetails

{ "enableProductCreation": "1" "taxCode":"ESBGST1" }

 

Import Orders:

Structure wrt above example:

shippingState, tag, locationId, paymentMethod

 

  1. hierarchy default AND

  2. check root level key and second level key it should be only AND and OR

  3. third hierarchy key can only be is and isNot

  4. value of fields (fourth hierarchy) will be list of string.

if filters key is present in otherDetails:

  1. value->list of string or string

  2. property should not be empty

  3. the operator should be is or is NOT

 

 

{ "AND": [ { "OR": [ { "property": "shippingState", "operator": "is", "value": [ "New Delhi", "UP" ] }, { "property": "shippingState", "operator": "is", "value": [ "Rajasthan", "MP" ] }, { "property": "paymentMethod", "operator": "is", "value": [ "COD", "Debit Card" ] } ] }, { "AND": [ { "property": "tag", "operator": "is", "value": [ "RJ", "UP" ] }, { "property": "locationId", "operator": "isNot", "value": [ "ABC", "XYZ" ] } ] } ] }

 

Related content