1. Trip Level
MOVER BUSINESS API
  • Orders
    • On Demand
      • Estimate / Coverage
      • Create Order (On Demand)
      • Status
      • Partner Location
      • Invoice
      • Cancel
    • Standard Delivery
      • Dispatch Order(s)
      • Order(s) Status
      • Cancel Order
  • Webhooks
    • On Demand
      • Trip Level
        • OrderCreated
        • TripStarted
        • BillGenerated
        • PartnerAssigned
        • Cancelled
        • TripEnded
      • Location Point Level
        • Arrived
        • Delivered
        • Return Started
        • Returned To Origin
        • Cancelled
        • Liquidated
      • Webhook (Legacy)
    • Standard
      • InTransit
      • Arrived
      • Delivered
      • Return Started
      • Returned To Origin
      • Cancelled
      • Liquidated
  1. Trip Level

BillGenerated

Developing
Webhook
POST
BillGenerated
Triggers when all the tasks -> Pickups and Drops have been completed and a bill is generated for the order.

Request

Authorization
or
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://your-api-server.com' \
--header 'Content-Type: application/json' \
--data '{
    "payload": {
        "OrderId": "TSTPILE96BK",
        "StatusId": 10,
        "DriverId": 289459,
        "RiderId": 399479,
        "PickUpLatitude": 28.164120770561773,
        "DropOffLatitude": 28.166788043642683,
        "DropOffLongitude": 76.4561439526993,
        "PickUpLongitude": 76.45589718947359,
        "PickUpAddress": "Pickup 1",
        "DropOffAddress": "Drop 1",
        "NeedHelper": 0,
        "CouponCode": null,
        "Amount": 62.0,
        "TotalDistance": 5450.0,
        "PickupOtp": "1234",
        "DropOffOtp": "4321",
        "VehicleId": 5,
        "CreatedAt": 1765729249,
        "UpdatedAt": 1765729495,
        "VehicleNumberPlate": "HR****053",
        "VehicleName": "Bike",
        "RiderName": "puneet Yadavan",
        "DriverName": "pu",
        "DriverMobile": "8307228124",
        "RiderMobile": "8307228124",
        "PickUpTripId": "YAT4O1GE",
        "DropOffTripId": null,
        "GoodsTypeId": 1,
        "PickUpContactNo": "8307228125",
        "PickUpContactName": "Pickup Contact",
        "RecieverContactNo": "8307228124",
        "RecieverContactName": "Last Drop Contact",
        "PickupTrackingUrl": "https://mover.delivery/Track/TSTPILE96BK",
        "DropOffTrackingUrl": "https://mover.delivery/track/TSTPILE96BK",
        "EstimatedJourneyTime": 64,
        "ActualJourneyTime": 0,
        "ActualAmount": 62.0,
        "PaymentMode": 3,
        "ActualJourneyDistance": 0,
        "ReceivedPaymentMode": 0,
        "PaymentSatus": 0,
        "AmountReceived": 0.0,
        "CancelReason": null,
        "CancelledBy": 0,
        "DiscountAmount": 0.0,
        "MoverCommission": 0.0,
        "DropOffTripStartAt": "2025-12-14T16:21:05.705143",
        "ZoneId": 0,
        "PricingId": 0,
        "IsOutStation": 0,
        "DestinationArrivalBy": "2025-12-14T16:22:09.705007",
        "PickupArrivalBy": "2025-12-14T16:20:53.087664",
        "NoOfStops": 1,
        "OrderPlacedAt": "2025-12-14T16:20:48.510306",
        "CancelAt": null,
        "OrderCompletedAt": null,
        "ArrivedAtPickupAt": "2025-12-14T16:20:53.107502",
        "ExitFromPickupAt": null,
        "FreeLoadingSeconds": 3600,
        "TripStartedAt": "2025-12-14T16:21:05.705157",
        "RTOInitAt": null,
        "TripEndedAt": null,
        "ArrivedAtDropAt": null,
        "ExitFromDropAt": null,
        "FareRecalculated": 0,
        "MinsSpentAtPickup": 0,
        "MinsSpentAtDrop": 0,
        "TotalMinsSpent": 0,
        "ChargeableWaitMins": 0,
        "ChargePerWaitMin": 0,
        "ExtraKmGone": 0,
        "ChargePerExtraKm": 0,
        "WaitingCharge": 0,
        "ExtraKmCharge": 0,
        "PriceAgreed": 0,
        "IsInsured": false,
        "GoodsValue": 0,
        "OrderTypeId": 1,
        "ShippingMode": 1,
        "EpId": 1,
        "Pooled": false,
        "StoreId": 0,
        "GST": 0.0,
        "TpCharge": 0.0,
        "DriverEpId": 0,
        "DriverFleetId": 0,
        "Platform": 3,
        "ApiVersion": 2
    },
    "type": "BillGenerated"
}'
Response Response Example
{}
Modified at 2026-02-02 11:14:37
Previous
TripStarted
Next
PartnerAssigned
Built with