API Endpoint
API Endpoint
Backend-Database Report
Group : 7
Class : TI001-K48
Mentor : PhD Nguyễn Thiên Bảo
MODEL DATABASE
Xe dù - Ho Chi Minh City delivery service Dataset is a single table dataset which
contains all of the successful orders of Xe dù from the beginning date until the time this
dataset is updated.
Xe dù (Umbrella delivery service) is a startup enterprise in Ho Chi Minh City, Vietnam,
which focus on providing delivery service with agility, cost-effective and oriented
towards people. The dataset was created aiming to provide basic needs for routing
optimization algorithms research, which play a crucial role in the company core value.
Here are the brief description for the column inside the dataset:
Column name type Description
UTC
createdAt Order creation date
date
expectedDeliveryTi UTC
Expected delivery date
me date
UTC
deliveredAt Order actual delivery date
date
APIs
1. Create Order
"customer_id": 123,
"product_id": 456,
"quantity": 2,
"address": "789 Warehouse Blvd",
"weight": 5.5,
"shipping_method": "express"
}
{
2. Get Order
"order_id": 789,
"customer_id": 123,
"product_id": 456,
"quantity": 2,
"weight": 5.5,
"shipping_method": "express",
"predicted_delivery_time": "2024-09-30T10:00:00Z",
"status": "pending"
3. Order Predict
"order_id": 789,
"predicted_delivery_time": "2024-09-30T10:00:00Z",
"confidence": 0.95
"status": "delivered"
"order_id": 789,
"status": "delivered",
}
5. Predict batch order
Reponse: