Example 1 - Sales Order
Building an example sales order transformation file from scratch.
{
"order": "#GB123042",
"sub_total": 48.5,
"shipping": 4.95,
"grand_total": 53.45,
"shipping_type": "Next Day",
"created_at": "2020-01-01 13:43:23",
"customer_email": "[email protected]",
"customer_name": "Joe Bloggs"
}{
"order_number": {
"*ppk*": "order"
},
"order_email": {
"*ppk*": "customer_email"
},
"full_name": {
"*ppk*": "customer_name"
}
}Scenario
Start with the basics
โAdding in the address
Add in the customer
Add in the items
Add in tracking
The end result
Last updated
Was this helpful?