This is what Facebook calls the Receipt template
You can implement it by copy pasting this code into Bot > Make a Custom Request
{
"attachment": {
"type": "template",
"payload": {
"template_type": "receipt",
"recipient_name": "Recipient Name",
"order_number": "ORDERNUMBER",
"currency": "USD",
"payment_method": "Cash on Delivery",
"order_url": "http://petersapparel.parseapp.com/order?order_id=123456",
"timestamp": "1428444852",
"elements": [
{
"title": "Classic White T-Shirt",
"subtitle": "100% Soft and Luxurious Cotton",
"quantity": 2,
"price": 50,
"currency": "USD",
"image_url": "http://petersapparel.parseapp.com/img/whiteshirt.png"
}
],
"address": {
"street_1": "1 Hacker Way",
"street_2": "",
"city": "Menlo Park",
"postal_code": "94025",
"state": "CA",
"country": "US"
},
"summary": {
"subtotal": 75,
"shipping_cost": 4.95,
"total_tax": 6.19,
"total_cost": 56.14
}
}
}
}
Of course, you would change the data to what you have from your Sheets.
Have a look at this page for more information on what each field is:
https://developers.facebook.com/docs/messenger-platform/send-api-reference/receipt-template