- API Reference Guide
- API Documentation
- Master Data
- Payout Method
- Payin Method
- Payout Beneficiary
- Payin
- Payout
- Checkout
- Transaction
- Wallet
- Customer
- Webhook
- Get List Payment Method by CurrencyGET
- Features Documentation
Retrieve Payin
GET
/api/v1/payin/retrieve-payin/{id}
payin_id
parameter.Request
Path Params
id
string
required
Example:
86db9204-c547-47b2-a9f9-589176a6f981
Header Params
X-token
string
required
Example:
snd_eyJpdiI6Ik41YjZiWXFPQnR4RkxEN2xaQmgybkE9PSIsInZhbHVlIjoiMEErazkwaDlicjFFWHlzd0lkTi9VQjRJOGFOZjgrSzhVQllvamhTaUFVMVU4SVJhM1EzdzdVdlpCK2dZMXhOSyIsIm1hYyI6IjI0OWE5NzUxYjE0MDMyNTY0YWVmOTlkYzdmOGIyOGVkMzg1YWYzNDk2YTdjYjMwODRiY2NlM2UxMjM5NTJmZmUiLCJ0YWciOiIifQ==
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/payin/retrieve-payin/86db9204-c547-47b2-a9f9-589176a6f981' \
--header 'X-token: snd_eyJpdiI6Ik41YjZiWXFPQnR4RkxEN2xaQmgybkE9PSIsInZhbHVlIjoiMEErazkwaDlicjFFWHlzd0lkTi9VQjRJOGFOZjgrSzhVQllvamhTaUFVMVU4SVJhM1EzdzdVdlpCK2dZMXhOSyIsIm1hYyI6IjI0OWE5NzUxYjE0MDMyNTY0YWVmOTlkYzdmOGIyOGVkMzg1YWYzNDk2YTdjYjMwODRiY2NlM2UxMjM5NTJmZmUiLCJ0YWciOiIifQ=='
Responses
🟢200Success
application/json
Body
message
string
required
data
object
required
id
string
required
merchant_id
string
required
status
string
required
amount_type
string
required
transaction
string
required
transaction_date
string
required
payment_method
string
required
order_reference
string
required
customer_full_name
string
required
reply_code
string
required
brand
string
required
currency
string
required
credit_type
string
required
payer_id
string
required
recon_id
string
required
order_reference_1
string
required
order_reference_2
string
required
platform_identifier
string
required
trx_type
string
required
customer_email
string
required
customer_phone
string
required
customer_personal_number
null
required
fee_taken
integer
required
fee_expected
integer
required
charge_back
integer
required
rolling_serve
integer
required
retrieval
integer
required
is_black_list
integer
required
ip_address
null
required
billing_address_country
null
required
billing_address_city
null
required
billing_address_zip_code
null
required
billing_address
null
required
bin
null
required
is_3ds
null
required
bank_psp
null
required
created_at
null
required
updated_at
null
required
deleted_at
null
required
payment_date
null
required
Example
{
"status": boolean,
"message": "string",
"data": {
"id": "string",
"merchant_id": "string",
"status": "string",
"amount": number,
"amount_type": "string",
"transaction": "string",
"transaction_date": "2024-12-29T13:18:09.000Z",
"payment_method": "string",
"order_reference": "string",
"customer_full_name": "string",
"reply_code": "string",
"brand": "string",
"currency": "string",
"credit_type": "string",
"payer_id": "string",
"recon_id": "string",
"order_reference_1": "string",
"order_reference_2": "string",
"platform_identifier": "string",
"trx_type": "string",
"customer_email": "string",
"customer_phone": "string",
"customer_personal_number": null,
"fee_taken": 0,
"fee_expected": 0,
"charge_back": 0,
"rolling_serve": 0,
"retrieval": 0,
"is_black_list": 0,
"ip_address": null,
"billing_address_country": null,
"billing_address_city": null,
"billing_address_zip_code": null,
"billing_address": null,
"bin": null,
"is_3ds": null,
"bank_psp": null,
"created_at": null,
"updated_at": null,
"deleted_at": null,
"payment_date": null
}
}
🟠400Bad Request
Modified at 2025-05-23 01:40:34