Hey there!
I’m working on a pizza delivery app. I currently have a set up where users select items which become
thing = Cart Items
these cart items obviously have their own fields like price and whether the user has selected extras, i.e.
Cart Item 1
Name: Big Pizza
Price: 15.00
Extras: Double Cheese, Vegan Cheese
when they checkout, these Cart Items are added to
thing = Order as
set list of Cart Items
That’s fine, but in the API address of /object/order, the cart items show up as unique IDs e.g.
“Cart Items”: [
“1633969568297x922730653028974600”,
“1633969583834x487407626014687200”,
“1633969597909x707958147531931600”
],
In order to see the fields from those Cart Items, e.g. name, price etc, do I have to add them to the order in a different way, i.e.
Create Cart Item 1:
- name: first Cart Item’s name
- price: first Cart Item’s price
- extras: first Cart Item’s extras
thanks in advance!