RETM | REST API
  1. Invoice Webhooks
RETM | REST API
  • Developer guide
  • New to our DevPortal 🤔
  • Authentication
    • Token
      POST
  • Webhook
    • Overview
    • Invoice Webhooks
      • Webhook Events
      • Invoice Created
        POST
    • Orders Webhooks
      • Webhook Events
      • Order Triggeres
    • Menu Webhooks
      • Menu Updates
      • Menu Changed
    • Loyalty Webhooks
      • Promotional Coupon
      • Check Reward
      • Redeem Reward
    • Customer webhook
      • Customer Data
      • Customer hook
    • Error webhook
      • Stay Alert to Connectivity Issues
      • Error webhook
  • Orders
    • Orders
      GET
    • Create Order
      POST
    • Cancel Order
      POST
    • Update delivery order status
      POST
  • Menu
    • Categories
      • List Categories
      • Single Categoy
    • Products
      • Products
      • Single Product
      • Simple List
    • Menu
      GET
  • Branches
    • Branches
      GET
  • Devices
    • Devices
      GET
  • Order type
    • Order types
      GET
    • Create order type
      POST
  • Price Lists
    • Price Lists
  • Payment Methods
    • Payment methods
    • Create pay method
  • Order Charges
    • order charges
    • Create order charges
  • Taxes
    • Tax list
    • Create tax
  • Customers
    • Customers
  1. Invoice Webhooks

Invoice Created

POST
{{YOUR_END_POINT}}
Triggered when an Invoice is created.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "business_refrence": "",
    "timestamp": "datetime",
    "reference": "dolore et aliquip",
    "event": "order.created",
    "event_type": "labore culpa",
    "invoice_id": "magna dolore",
    "order_refrence": "",
    "sale_id": "ipsum esse",
    "order_reference": "Duis cillum culpa",
    "branch_id": "",
    "device_id": "Excepteur proident eu irure sit",
    "created_at": "",
    "total_price": 979.49,
    "subtotal_price": 148.84,
    "tax": 72944772.17599532,
    "status": "dolor adipisicing",
    "note": "",
    "taxes": [
        {
            "id": "",
            "name": {},
            "amount": 199.39
        },
        {
            "id": "",
            "name": {},
            "amount": 183.89
        },
        {
            "id": "",
            "name": {},
            "amount": 874.59
        }
    ],
    "payments": [
        {
            "id": "",
            "name": {},
            "amount": 478.95
        },
        {
            "id": "",
            "name": {},
            "amount": 815.99
        },
        {
            "id": "",
            "name": {},
            "amount": 344.59
        }
    ],
    "products": [
        {
            "id": "",
            "sku": "",
            "name": {},
            "quantity": 94,
            "total": -23466454.977223262,
            "unit_price": 611.05,
            "discount_amount": 117.4,
            "tax": 9709848.377750948,
            "note": "exercitation consectetur aliquip",
            "category": {
                "id": "",
                "name": {}
            },
            "variation": {
                "id": "",
                "name": {}
            },
            "modifiers": []
        }
    ],
    "customer": {
        "id": "",
        "name": {},
        "phone": "",
        "email": ""
    },
    "discount": {
        "id": "",
        "amount": 730.29
    },
    "order_charege": {
        "id": "",
        "amount": 806.4
    },
    "order_type": {
        "id": "",
        "name": {}
    },
    "meta": {
        "order_reference": "ut sed"
    }
}

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-06-19 14:39:58
Previous
Webhook Events
Next
Webhook Events
Built with