- Checkout Page
- API Documentation
- Master Data
- Payin Method
- Payout Method
- Payin
- Payout
- Payout Beneficiary
- Transaction
- Wallet
- Customer
- Checkout
- Webhook
- Features Documentation
Retrieve Payin
GET
/api/v1/payin/retrieve-payin/{id}
payin_id
parameter.Request
Path Params
id
string
required
Example:
payin_1344b7c5a4d74575ac5d08dc05051dd3
Header Params
X-token
string
required
Example:
snd_eyJpdiI6Ijl0eGVRcXV0MkNvZkVJTXRuN2RIZWc9PSIsInZhbHVlIjoiL2dOWTkxb0xhZitReXEza2JPRElId2NpbkkxOStxbE5wbWZZUThiMnU5WkczdlREL2M3SmM4dW0yNnFPWGN2ZSIsIm1hYyI6ImJhNWIyNzc2MTEyZjI3YjIzOTU1NjMyYzU3M2JhMTEyYjE3NWFmMTNhMGEzNzIyMjgwNGQ1MGQwMDUzMzkzYmQiLCJ0YWciOiIifQ==
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/payin_1344b7c5a4d74575ac5d08dc05051dd3' \
--header 'X-token: snd_eyJpdiI6Ijl0eGVRcXV0MkNvZkVJTXRuN2RIZWc9PSIsInZhbHVlIjoiL2dOWTkxb0xhZitReXEza2JPRElId2NpbkkxOStxbE5wbWZZUThiMnU5WkczdlREL2M3SmM4dW0yNnFPWGN2ZSIsIm1hYyI6ImJhNWIyNzc2MTEyZjI3YjIzOTU1NjMyYzU3M2JhMTEyYjE3NWFmMTNhMGEzNzIyMjgwNGQ1MGQwMDUzMzkzYmQiLCJ0YWciOiIifQ=='
Responses
🟢200Success
application/json
Body
message
string
required
data
object
required
id
string
required
payin_id_finmo
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",
"payin_id_finmo": "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-03-12 01:17:05