Nhảy tới nội dung
Phiên bản: Lastest

API Lấy danh sách giao dịch

Endpoint: /api/v1/service/ebill/transactions

Method: GET

Header: Cách tạo JWT_TOKEN

{
"X-APPOTAPAY-AUTH": Bearer JWT_TOKEN,
"Content-Type": "application/json"
}

Tham số

Tham sốYêu cầuKiểu dữ liệuMô tả
startTimeIntegerThời gian bắt đầu
endTimeIntegerThời gian kết thúc
billCodeStringMã hóa đơn
limitIntegerTổng số giao dịch trên một trang (mặc định: 20)
pageIntegerTrang hiện tại (mặc định: 1)

Dữ liệu trả về

Tham sốKiểu dữ liệuMô tả
errorCodeIntegerMã lỗi trả về
messageStringChi tiết mã lỗi
totalIntegerTổng số giao dịch
pageIntegerTrang hiện tại
transactionsArray of ObjectDanh sách giao dịch
transactions.transactionIdStringMã giao dịch
transactions.billCodeStringMã đơn hàng
transaction.accountNoStringSố tài khoản
transactions.amountIntegerSố tiền giao dịch
transactions.statusStringTrạng thái giao dịch
transactions.typeStringLoại giao dịch
transactions.memoStringNội dung chuyển khoản
transactions.transactionTimeStringThời gian thực hiện giao dịch

Ví dụ

Response

{
"errorCode": 0,
"message": "Thành công",
"total": 1,
"page": 1,
"transactions": [
{
"transactionId": "abc12345",
"billCode": "004000110020210401174059469229",
"accountNo": "902000225483",
"amount": 100000,
"status": "success",
"type": "VA",
"memo": "chuyen khoan",
"transactionTime": "20-03-2021 10:01:00"
}
]
}