API Documentation
  1. Transaction
API Documentation
  • API Reference Guide
    • Checkout Page
    • Payin - KRW (Server to Server)
    • Purpose Code
    • Payout Payload Example
    • List of Payin Methods
  • API Documentation
    • Master Data
      • Get All Country & Currency Code
    • Payout Method
      • Get Required Fields by Payout method
      • Get All Payout Method
    • Payin Method
      • Get All Payin Method
      • Get Required Fields by Payin method
    • Payout Beneficiary
      • Create Payout Beneficiary
      • Update Payout Beneficiary
      • Get All Payout Beneficiary
      • Get Payout Beneficiary by Id
      • Validation by Id
      • Validation by Body
    • Payin
      • Create Payin
      • Retrieve Payin
      • Retrieve Payin Memo (PDF)
      • Create Virtual Account
    • Payout
      • Create Payout
      • Simulate Payout
      • Retrieve Payout Memo (PDF)
      • Retrieve Payout
      • Get All Payout
    • Checkout
      • Create Payment Request
      • Get All Checkout
      • Cancel Checkout
      • Get Detail Checkout
      • Create Virtual Account [KRW]
      • Get VA Bank Information [KRW]
      • Create New Checkout
    • Transaction
      • Find Transaction by Id
        GET
      • Get All Transaction
        GET
    • Wallet
      • Create Wallet
      • Get All Wallet
      • Get by Wallet Id
    • Customer
      • Create Customer
      • Update Customer
      • Get All Customer
      • Get Detail Customer by Id
      • Check Is Customer Wallet Ready
      • Enable Customer
      • Disable Customer
      • Delete Customer
    • Webhook
      • Webhook PAYIN SUCCESS
      • Webhook PAYOUT SUCCESS
      • Webhook PAYOUT FAILED
      • VA Register Callback
    • Get List Payment Method by Currency
      GET
  • Features Documentation
    • Dashboard
    • Transaction
      • Payin
      • Payout
      • Rolling Reserve
      • Refund Request
    • Finance
      • Settlement Report APM
      • Settlement Report CARD
      • History Balance APM
      • History Balance CARD
    • Account
      • Profile Account
      • Manage Users
    • Setting
      • Integration Details
  1. Transaction

Get All Transaction

GET
/api/v1/transaction/all-transaction
This API is used to Retrieve all wallet transactions by customer_id

Request

Header Params
X-token
string 
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.paycombat.com/api/v1/transaction/all-transaction' \
--header 'X-token;'

Responses

🟢200Success
application/json
Body
message
string 
required
data
array [object {15}] 
required
transaction_id
string 
optional
org_id
string 
optional
fees_currency
string 
optional
currency
string 
optional
event_id
string 
optional
event_type
string 
optional
event_name
string 
optional
event_description
string 
optional
scope
string 
optional
customer_id
string 
optional
invoice_id
string 
optional
settlement_id
string 
optional
additional_data
null 
optional
created_at
string 
optional
updated_at
string 
optional
Example
{
  "status": boolean,
  "message": "string",
  "data": [
        {
        "transaction_id": "string",
        "org_id": "string",
        "amount": number,
        "fees_currency": "string",
        "fees_without_tax": number,
        "tax_on_fees": number,
        "fees_including_tax": number,
        "net_amount": number,
        "currency": "string",
        "event_id": "string",
        "event_type": "string",
        "event_name": "string",
        "event_description": "string",
        "scope": "string",
        "customer_id": "string",
        "invoice_id": "string",
        "is_settled": boolean,
        "settlement_id": "string",
        "is_reconciled": boolean,
        "additional_data": null,
        "created_at": "2024-12-27T10:54:35.965Z",
        "updated_at": "2024-12-27T10:54:36.299Z"
        }
    ]
}
🟠400Bad Request
Modified at 2025-03-12 01:18:21
Previous
Find Transaction by Id
Next
Create Wallet