Skip to content

AutoScale API Reference

https://api.redblu.io/v1/autoscale

น้ำหนักปัจจุบัน

GET /v1/autoscale/devices/scale_001/weight/current

Response:

{
"success": true,
"data": {
"weight": 1247.5,
"unit": "grams",
"stability": "stable",
"accuracy": 0.1,
"timestamp": "2024-08-05T12:00:00Z"
}
}

เริ่มการบรรจุ

POST /v1/autoscale/devices/scale_001/packaging/start
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"target_weight": 1000,
"tolerance": 5,
"package_type": "bag_1kg",
"batch_size": 100
}

รายงานคุณภาพ

GET /v1/autoscale/devices/scale_001/quality/report?date=2024-08-05

Response:

{
"success": true,
"data": {
"total_packages": 1247,
"within_tolerance": 1203,
"accuracy_rate": 96.47,
"average_deviation": 2.3,
"rejected_packages": 44
}
}

สStatisticsการผลิต

GET /v1/autoscale/devices/scale_001/production/stats?period=today

Response:

{
"success": true,
"data": {
"packages_completed": 1247,
"total_weight": 1247000,
"efficiency_rate": 94.2,
"downtime_minutes": 23,
"throughput_per_hour": 156
}
}