> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.bentoweb.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# การแจ้งจัดส่ง TiktokShop โดยรูปแบบ Pickup/Dropoff

### **TikTok Shop (`order_from = 22`)**
## __วิธีการแจ้งจัดส่ง__

### 1. Endpoint สำหรับ Save Shipping

```
POST https://order.bentoweb.com/api/order/save-shipping
```

### 2.1 Parameter ที่ต้องใช้ (Drop-off)

```
{
  "order_id": "123456789",
  "store_id": "999",
  "shipping_method": "J&T Express",
  "shipping_datetime": "2025-07-16 19:00:00",
  "pick_up_type": "DROP_OFF"
}
```

### 2.2 Parameter ที่ต้องใช้ (Pickup)

```
{
  "order_id": "123456789",
  "store_id": "999",
  "shipping_method": "J&T Express",
  "shipping_datetime": "2025-07-16 19:00:00",
  "pick_up_type": "PICKUP"
}
```