Paytronix · Example Payload

Online Ordering Api Order Example

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Online Ordering Api Order Example is an example object payload from Paytronix, with 10 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idrestaurantIditemscustomerorderMethodtiptotalstatusdeliveryAddresscreatedAt

Example Payload

Raw ↑
{
  "id": "5f1c2d3e4a5b6c7d8e9f0a1b",
  "restaurantId": "4b96f1bafc9f100ca79231ef",
  "items": [
    {
      "menuItemId": "4b96f1bafc9f100ca79231ef",
      "name": "Chicken Burrito",
      "quantity": 2,
      "price": 9.5,
      "options": [
        {
          "name": "string",
          "price": 0
        }
      ]
    }
  ],
  "customer": {
    "firstName": "Jane",
    "lastName": "Doe",
    "email": "jane@example.com",
    "phone": "+16175551234"
  },
  "orderMethod": "online_app",
  "tip": 3.0,
  "total": 22.0,
  "status": "submitted",
  "deliveryAddress": {
    "address1": "456 Elm St",
    "address2": "string",
    "city": "Boston",
    "state": "MA",
    "postalCode": "02110"
  },
  "createdAt": "2026-06-03T12:00:00Z"
}