For the complete documentation index, see llms.txt. This page is also available as Markdown.

(TikTok) Danh sách giao dịch

TikTok Shop cho phép lấy các giao dịch theo ngày, trong mỗi giao dịch sẽ có nhiều đơn hàng được thanh toán, muốn lấy danh sách các đơn hàng thì cần gọi thêm API Đối soát đơn hàng theo giao dịch

URL API: https://new.abitstore.vn

POST /ecommerce/tiktok/getStatementsByPartner

Headers

Name
Value

Content-Type

application/json

Body

Name
Type
Description

access_token

string

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 Access Token

partner_name

string

Mã shop khi đăng ký Abit

ecommerce_id

string

ID gian hàng TikTok Shop ... được kết nối vào Abit, lấy thông tin ID trong mục Kết nối đa kênh =⇒ Kết nối sàn TMĐT

date_time_start

datetime

Lấy những giao dịch bắt đầu từ ngày

page_token

string

là phân trang của tiktok shop, lấy dữ liệu trang đầu tiên thì giá trị này không truyền gì cả, trang trang tiếp theo truyền giá trị của trường "next_page_token" ở Response trả về

limit

int

Số lượng giao dịch lấy ra

{
"access_token":"Y3TVmN2QxY2E2OWJjYWYyODFkZWFlZGY1ZWE0ZjhmMzM=",
"partner_name":"Abit",
"date_time_start": "2026-07-12 00:00:00",
"ecommerce_id":"7494558197011024789",
"page_token":"",
"limit":5
}

{
    "code": 0,
    "data": {
        "next_page_token": "",
        "statements": [
            {
                "adjustment_amount": "0",
                "currency": "VND",
                "fee_amount": "-1604943",
                "id": "7660720364734859028",
                "net_sales_amount": "5311000",
                "payment_id": "3656827961771526037",
                "payment_status": "SETTLED",
                "payment_time": 1783728711,
                "revenue_amount": "5311000",
                "settlement_amount": "3706057",
                "shipping_cost_amount": "0",
                "statement_time": 1783728000
            },
            {
                "adjustment_amount": "0",
                "currency": "VND",
                "fee_amount": "-1384753",
                "id": "7661102720761349905",
                "net_sales_amount": "4695000",
                "payment_id": "3657633911718119317",
                "payment_status": "SETTLED",
                "payment_time": 1783818320,
                "revenue_amount": "4695000",
                "settlement_amount": "3310247",
                "shipping_cost_amount": "0",
                "statement_time": 1783814400
            },
            {
                "adjustment_amount": "0",
                "currency": "VND",
                "fee_amount": "-2071133",
                "id": "7661435189385807632",
                "net_sales_amount": "6941000",
                "payment_id": "3658395493949867925",
                "payment_status": "SETTLED",
                "payment_time": 1783907710,
                "revenue_amount": "6941000",
                "settlement_amount": "4869867",
                "shipping_cost_amount": "0",
                "statement_time": 1783900800
            },
            {
                "adjustment_amount": "0",
                "currency": "VND",
                "fee_amount": "-1245750",
                "id": "7661827830694643473",
                "net_sales_amount": "3882000",
                "payment_id": "3659094398177806229",
                "payment_status": "SETTLED",
                "payment_time": 1783992746,
                "revenue_amount": "3882000",
                "settlement_amount": "2636250",
                "shipping_cost_amount": "0",
                "statement_time": 1783987200
            }
        ]
    },
    "message": "Success",
    "request_id": "20260714110045ECC5739CE9DC9D03C843"
}

Thông tin giá trị API trả về shop có thể tham khảo tại đây:

https://partner.tiktokshop.com/docv2/page/get-transactions-by-order-202501

Last updated

Was this helpful?