# (Shopee) Ví Shopee

URL API: [https://new.abitstore.vn](https://new.abitstore.vn/ecommerce/getWalletTransactionListByPartner)

<mark style="color:green;">`POST /ecommerce/getWalletTransactionListByPartner`</mark>

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |

**Body**

<table><thead><tr><th width="149">Name</th><th width="95">Type</th><th>Description</th></tr></thead><tbody><tr><td>access_token</td><td>string</td><td>Mã Access token được khởi tạo và cấp quyền bởi chủ tài khoản Abit, Xem hướng dẫn tạo <a href="../../gioi-thieu-ve-abit-open-api#khoi-tao-access-token"><mark style="color:red;"><strong>Access Token</strong></mark> </a></td></tr><tr><td>partner_name</td><td>string</td><td>Mã shop khi đăng ký Abit</td></tr><tr><td>date_time_start</td><td>string</td><td>Thời gian bắt đầu, định dạng mẫu "2025-10-30 00:00:00"</td></tr><tr><td>date_time_end</td><td>string</td><td>Thời gian kết thúc, định dạng mẫu "2025-10-30 23:59:59"</td></tr><tr><td>ecommerce_id</td><td>string</td><td>ID gian hàng Shopee , TikTok Shop ... được kết nối vào Abit, lấy thông tin ID trong mục <strong>Kết nối đa kênh =⇒ Kết nối sàn TMĐT</strong></td></tr><tr><td>page</td><td>int</td><td>Phân trang dữ liệu, mặc định là 0,</td></tr><tr><td>limit</td><td>int</td><td>Số bản ghi dữ liệu sẽ được lấy ra, Shopee hỗ trợ lấy tối đa 100 bản ghi/ trang</td></tr></tbody></table>

{% tabs %}
{% tab title="Body" %}

```json
{
    "access_token": "Zjg5ZDYzNmFmOGFkYmQwODVmMzVmOWM4YTRlMDFiMWQ=",
    "partner_name": "Abit",
    "date_time_start": "2025-10-28 00:00:00",
    "date_time_end": "2025-10-31 23:59:59",
    "ecommerce_id": "208830782",
    "page": 0,
    "limit": 10
}
```

{% endtab %}

{% tab title="Response" %}

```json
{
    "status": "success",
    "transaction_list": [
        {
            "transaction_id": 222276629898990118,
            "status": "COMPLETED",
            "wallet_type": "shopee_pay",
            "transaction_type": "ESCROW_VERIFIED_ADD",
            "amount": 391825,
            "current_balance": 10502090,
            "create_time": 1773482395,
            "reason": "",
            "order_sn": "260306DAP0YRQC",
            "refund_sn": "",
            "withdrawal_type": "",
            "transaction_fee": 0,
            "description": "Doanh Thu từ Đơn Hàng #260306DAP0YRQC",
            "buyer_name": "nguynxinh0239",
            "pay_order_list": [],
            "withdrawal_id": 0,
            "root_withdrawal_id": 0,
            "remarks": {
                "free_sample_order_id": null,
                "ppp_project_id": null
            },
            "transaction_tab_type": "wallet_order_income",
            "money_flow": "MONEY_IN",
            "outlet_shop_name": ""
        },
        {
            "transaction_id": 222180971565289723,
            "status": "COMPLETED",
            "wallet_type": "shopee_pay",
            "transaction_type": "ADJUSTMENT_FOR_RR_AFTER_ESCROW_VERIFIED",
            "amount": -33040,
            "current_balance": 10110265,
            "create_time": 1773425378,
            "reason": "",
            "order_sn": "260216SCVDN808",
            "refund_sn": "",
            "withdrawal_type": "",
            "transaction_fee": 0,
            "description": "Điều chỉnh Đơn hàng 260216SCVDN808 do phát sinh Trả hàng/Hoàn tiền",
            "buyer_name": "vitalii2752",
            "pay_order_list": [],
            "withdrawal_id": 0,
            "root_withdrawal_id": 0,
            "remarks": {
                "free_sample_order_id": null,
                "ppp_project_id": null
            },
            "transaction_tab_type": "wallet_adjustment_filter",
            "money_flow": "MONEY_OUT",
            "outlet_shop_name": ""
        },
        {
            "transaction_id": 222112380316816342,
            "status": "COMPLETED",
            "wallet_type": "shopee_pay",
            "transaction_type": "ESCROW_VERIFIED_ADD",
            "amount": 35425,
            "current_balance": 9611461,
            "create_time": 1773384495,
            "reason": "",
            "order_sn": "260307H435RVDB",
            "refund_sn": "",
            "withdrawal_type": "",
            "transaction_fee": 0,
            "description": "Doanh Thu từ Đơn Hàng #260307H435RVDB",
            "buyer_name": "katran2743",
            "pay_order_list": [],
            "withdrawal_id": 0,
            "root_withdrawal_id": 0,
            "remarks": {
                "free_sample_order_id": null,
                "ppp_project_id": null
            },
            "transaction_tab_type": "wallet_order_income",
            "money_flow": "MONEY_IN",
            "outlet_shop_name": ""
        }
    ],
    "code": 200
}
```

{% endtab %}
{% endtabs %}

Thông tin giá trị API trả về shop có thể tham khảo tại đây: <https://open.shopee.com/documents/v2/v2.payment.get_wallet_transaction_list?module=97&type=1>
