Engineering / Order data model
SALast edited by Saman Attar · Mithra Systems

Order data model

The project installs a custom Order__c object into your org (via the setup ticket). Crate & Co.'s inbound actions read and write these records.

FieldAPI nameTypeNotes
AccountAccount__cLookup(Account)The customer the order belongs to
Product SKUProduct_SKU__cTexte.g. SKU-DEMO-100
QuantityQuantity__cNumberUnits ordered
DestinationDestination__cTextShip-to, e.g. Denver, CO
Tracking NumberTracking_Number__cTextBusiness key, e.g. APX-SEED-1001
StatusStatus__cPicklistPlaced · Shipped · Delivered · Cancelled

Seed data

The setup ticket seeds two customers and their orders so the read/count/lookup tickets have something deterministic to work against:

  • Meridian Design Co. - one order (APX-SEED-1001).
  • Northwind Traders Ltd - three orders (APX-SEED-3001..3003).

See the API Reference for how the inbound actions consume these records.