I’ve been reading about line items and looking for solutions, but I’ve come up empty.
I’m trying to create a Zap that sends a notification to Google Chat whenever we receive a new order in BigCommerce. The New Order trigger supports line items for all the items on the order, and I want to print them in the chat message so I can see quantity, name and price for each item they ordered. I just can’t seem to find how I can parse those lines and format them into a block of text. It seems like it should be do-able.
Unfortunately Google Chat doesn’t have any cool formatting options for tables that I’m aware of, so I think it just needs to be appended in a string. But instead of it being appended by data type. (quantities, names, prices), I want to append them by line item
Not this:
1,2,1
Product X, Product Y, Product Z
$1.00, $4.00, $3.00
I want this,
1, Product X, $1.00
2, Product Y, $4.00
3, Product Z, $3.00