Đánh giá tài xế
- cURL
- JavaScript
curl -X GET \
'https://apistg.ahamove.com/v1/order/rate_supplier?token=5d352c14eb44d753c5dcfc0b&order_id=ABCDEF&rating=5&comment=Good+guy' \
-H 'cache-control: no-cache'
var requestOptions = {
method: 'GET',
redirect: 'follow'
};
fetch("https://apistg.ahamove.com/v1/order/rate_supplier?token=5d352c14eb44d753c5dcfc0b&order_id=ABCDEF&rating=5&comment=Good+guy", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
API này dùng để đánh giá một tài xế sau khi đã hoàn thành đơn hàng
HTTP Request
GET https://apistg.ahamove.com/v1/order/rate_supplier
Query Parameters
Parameter | Type | Yêu cầu | Mô tả |
---|---|---|---|
token | String | Có | Token của người dùng |
order_id | String | Có | Mã đơn hàng |
rating | Number | Có | Mức độ đánh giá, từ 1-5 |
comment | String | Không | Nhận xét |
Response
JSON response example:
{}
Status-Code: 200 OK
Các lỗi thường gặp
Mã lỗi | Nội dung | Mô tả |
---|---|---|
404 | Not Found | - Không tìm thấy token - Không tìm thấy đơn hàng - Không tìm thấy tài xế |
401 | Unauthorized | Không được cấp phép |
500 | Internal Server Error | Hệ thống của chúng tôi có lỗi xảy ra. Xin thử lại sau |
503 | Service Unavailable | Chúng tôi tạm thời đang không hoạt động để bảo trì. Xin vui lòng thử lại sau |