curl --location --request POST 'https://zigs.menaplatform.com/invoicing/generate-invoice/' \
--header 'X-Account-ID: FMXXXXXXXXXXXXX' \
--header 'X-Auth-Key: XXXXXXXXXXXXXXXXXXXXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
"invoice_type": "simplified_tax_invoice",
"datetime": "2024-04-27T14:30",
"invoice_number": "INV-2024-0002",
"vat_number": "VAT123456789",
"phone_number": "+966544444444",
"address": "طريق أنس ابن مالك، حي الملقا، الرياض 13525، Saudi Arabia",
"items": [
{
"product_name": "Espresso",
"product_name_ar": "إسبريسو",
"product_price": "7.00",
"product_quantity": 2,
"variations": [
{
"variation_name": "Caramel Shot",
"variation_name_ar": "نكهة كراميل",
"variation_price": "3.00"
},
{
"variation_name": "Extra Shot",
"variation_name_ar": "جرعة إضافية",
"variation_price": "2.00"
}
],
"free_products": [
{
"product_name": "demo free product",
"product_name_ar": "تجربة",
"product_price" : "5.14",
"product_quantity": "3"
}
],
"total_price": "24.00",
"discount_value": "1.00",
"total_price_after_discount": "23.00",
"vat_percentage": "15.00",
"vat_value": "3.45",
"total_with_vat": "26.45"
},
{
"product_name": "Chocolate Muffin",
"product_name_ar": "مافن الشوكولاتة",
"product_price": "12.00",
"product_quantity": 1,
"total_price": "12.00",
"discount_value": "0.00",
"total_price_after_discount": "12.00",
"vat_percentage": "15.00",
"vat_value": "1.80",
"total_with_vat": "13.80"
},
{
"product_name": "Iced Americano",
"product_name_ar": "أمريكانو مثلج",
"product_price": "6.50",
"product_quantity": 3,
"variations": [
{
"variation_name": "Large Size",
"variation_name_ar": "حجم كبير",
"variation_price": "2.00"
},
{
"variation_name": "Ice Less",
"variation_name_ar": "ثلج أقل"
},
{
"variation_name": "Oat Milk",
"variation_name_ar": "حليب الشوفان",
"variation_price": "3.00"
}
],
"total_price": "34.50",
"discount_value": "1.50",
"total_price_after_discount": "33.00",
"vat_percentage": "15.00",
"vat_value": "4.95",
"total_with_vat": "37.95"
},
{
"product_name": "Classic Croissant",
"product_name_ar": "كرواسون كلاسيكي",
"product_price": "5.00",
"product_quantity": 2,
"total_price": "10.00",
"discount_value": "0.00",
"total_price_after_discount": "10.00",
"vat_percentage": "15.00",
"vat_value": "1.50",
"total_with_vat": "11.50"
},
{
"product_name": "Turkey & Cheese Sandwich",
"product_name_ar": "ساندويتش ديك رومي وجبن",
"product_price": "18.00",
"product_quantity": 1,
"total_price": "18.00",
"discount_value": "2.00",
"total_price_after_discount": "16.00",
"vat_percentage": "15.00",
"vat_value": "2.40",
"total_with_vat": "18.40"
},
{
"product_name": "Herbal Green Tea",
"product_name_ar": "شاي أخضر بالأعشاب",
"product_price": "4.00",
"product_quantity": 1,
"total_price": "4.00",
"discount_value": "0.00",
"total_price_after_discount": "4.00",
"vat_percentage": "15.00",
"vat_value": "0.60",
"total_with_vat": "4.60"
},
{
"product_name": "Blueberry Parfait",
"product_name_ar": "بارفيه بالتوت الأزرق",
"product_price": "10.50",
"product_quantity": 2,
"total_price": "21.00",
"discount_value": "0.00",
"total_price_after_discount": "21.00",
"vat_percentage": "15.00",
"vat_value": "3.15",
"total_with_vat": "24.15"
},
{
"product_name": "Mineral Water 330ml",
"product_name_ar": "مياه معدنية ٣٣٠ مل",
"product_price": "2.00",
"product_quantity": 3,
"total_price": "6.00",
"discount_value": "0.00",
"total_price_after_discount": "6.00",
"vat_percentage": "15.00",
"vat_value": "0.90",
"total_with_vat": "6.90"
},
{
"product_name": "Vanilla Latte",
"product_name_ar": "فانيلا لاتيه",
"product_price": "9.50",
"product_quantity": 1,
"variations": [
{
"variation_name": "Oat Milk",
"variation_name_ar": "حليب الشوفان",
"variation_price": "2.00"
}
],
"total_price": "11.50",
"discount_value": "0.50",
"total_price_after_discount": "11.00",
"vat_percentage": "15.00",
"vat_value": "1.65",
"total_with_vat": "12.65"
}
],
"total_price": "141.00",
"total_discount_value": "5.00",
"total_price_after_discount": "136.00",
"total_vat_value": "20.40",
"total_price_with_vat": "156.40",
"payment_method": [
{
"title": "Cash",
"amount": "66.08"
},
{
"title": "MADA",
"amount": "90.32"
}
],
"qr_code": "AQtCbHVlIEdhcmRlbgIPMzEyNTEyMTE0NjAwMDAzAxQyMDI0LTExLTIxVDEyOjM5OjAwWgQHMjUzMC4wMAUGMzMwLjAwBixuMkF3..."
}'