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

Find Transaction by Id

GET
/api/v1/transaction/find-transaction/{transaction_id}
This API is used to retrieve the details of a specific Transaction using the transaction_id

Request

Path Params
transaction_id
string 
required
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/find-transaction/' \
--header 'X-token;'

Responses

🟢200Success
application/json
Body
message
string 
required
data
object 
required
transaction_id
string 
required
org_id
string 
required
fees_currency
string 
required
currency
string 
required
event_id
string 
required
event_type
string 
required
event_name
string 
required
event_description
string 
required
scope
string 
required
customer_id
string 
required
invoice_id
string 
required
settlement_id
string 
required
additional_data
null 
required
created_at
string 
required
updated_at
string 
required
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:18
Previous
Create New Checkout
Next
Get All Transaction