Get EC_SETTLE3
Description
取得悠遊卡結帳檔資訊。
Resource
GET /v1/payment/ec_settle3
Authorization
採用 OAuth 2.0 Bearer Token,詳細使用流程請參考 Auth Login。
Query Parameters
| Name | Type | Description |
|---|---|---|
| store_id | string | 門市代碼 |
| pos_id | string | 裝置代碼 |
| batch_number | string | 交易批號 |
Request Example
GET /v1/payment/ec_settle3?store_id=001&pos_id=k1&batch_number=19010312
Response
{
"Deduct_count": 1,
"Refund_count": 0,
"AddValue_count": 0,
"Deduct_amt": 5.00,
"Refund_amt": 0.00,
"Total_AddValue_amt": 0.00,
"Total_Txn_count": 1,
"Total_Txn_amt": 5.00,
"Total_Txn_pure_amt": 5.00
}
Response Body Parameters
| Name | Type | Description |
|---|---|---|
| Deduct_count | int | 購貨筆數 |
| Refund_count | int | 退貨筆數 |
| AddValue_count | int | 自動加值筆數 |
| Deduct_amt | int | 購貨總額 |
| Refund_amt | int | 退貨總額 |
| Total_AddValue_amt | int | 自動加值總額 |
| Total_Txn_count | int | 交易總筆數 |
| Total_Txn_amt | int | 交易總額 |
| Total_Txn_pure_amt | int | 交易總淨額 |