- Checkout Page
- API Documentation
- Master Data
- Payin Method
- Payout Method
- Payin
- Payout
- Payout Beneficiary
- Transaction
- Wallet
- Customer
- Checkout
- Webhook
- Features Documentation
Find Transaction by Id
GET
/api/v1/transaction/find-transaction/{transaction_id}
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