- Checkout Page
- API Documentation
- Master Data
- Payin Method
- Payout Method
- Payin
- Payout
- Payout Beneficiary
- Transaction
- Wallet
- Customer
- Checkout
- Webhook
- Features Documentation
Get Detail Checkout
GET
/api/v1/checkout/retrieve/{id}
id
Request
Path Params
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/checkout/retrieve/' \
--header 'X-token;'
Responses
🟢200Success
application/json
Body
status
boolean
required
message
string
required
data
object
required
id
string
required
checkout_token
string
required
amount
integer
required
currency
string
required
country_code
string
required
payin_method_name
string
required
payin_type
null
required
customer_id
string
required
checkout_url
string
required
advanced_redirect_url
null
required
expire_at
string
required
additional_info
object
required
created_at
string
required
updated_at
string
required
deleted_at
null
required
order_summary
object
required
country_name
string
required
description
string
required
merchant_id
string
required
redirect_url
null
required
webhook_url
null
required
Example
{
"status": true,
"message": "OK",
"data": {
"id": "da5ba426-9d1a-43b4-a477-e83b4534098e",
"checkout_token": "5c57543e5dd646350e452890774a3927aacee5e500f6f89e54df1a82e3a6f539",
"amount": 100,
"currency": "EUR",
"country_code": "EU",
"payin_method_name": "eu_bank_sct_eur",
"payin_type": null,
"customer_id": "customer_350635a488994af081ee67d57fc07322",
"checkout_url": "https://checkout.paycombat.com/?token=5c57543e5dd646350e452890774a3927aacee5e500f6f89e54df1a82e3a6f539&identifier=snd_eyJpdiI6IjdsQmxtNlhZZnNkNE1BVHdOcWJzalE9PSIsInZhbHVlIjoidUNaUCtRTnRxRmxvc0RlR0hrRDBNTnQ5S3B3VU1hL0c1d1VuVTFhUkU0dDF6UTA3MzB0clpZR2h0dFYxUElLaiIsIm1hYyI6ImJjYTI4MmI2YmNhYjM4ZTEzMTQyY2M1ZDk2MTI2NjBjY2VjZDdkNDhkM2ZhMDU2OGExMDJjZDg4ODA5YTQ4NTgiLCJ0YWciOiIifQ==",
"advanced_redirect_url": null,
"expire_at": "2025-04-03T06:45:44.000Z",
"additional_info": {
"payin_id": "d1182b5f-5908-42f5-9d8d-3a2a7aafd465",
"payid_reference": "invoice_01042025_001",
"transaction_date": "2025-03-02T02:59:40.000Z",
"customer_full_name": "JOHN DOE",
"customer_email": "johndoe@gmail.com",
"customer_phone": "+6285156781122",
"brand": "BLACKPINK",
"payer_id": "johndoe_payer_id",
"recon_id": "johndoe_recon_id",
"trx_type": "CHECKOUT",
"fee_taken": 3,
"fee_expected": 3,
"charge_back": 0,
"rolling_serve": 0,
"retrieval": 0
},
"created_at": "2025-04-01T06:45:44.000Z",
"updated_at": "2025-04-01T06:46:04.000Z",
"deleted_at": null,
"order_summary": {
"id": "d33e4451-51a5-431b-b68f-f9f0839ec26a",
"payment_request_id": "da5ba426-9d1a-43b4-a477-e83b4534098e",
"total_items": 10,
"total_amount": 100,
"currency": "EUR",
"description": "summary_da5ba426-9d1a-43b4-a477-e83b4534098e",
"created_at": "2025-04-01T06:45:44.000Z",
"updated_at": "2025-04-01T06:45:44.000Z",
"order_items": [
{
"id": "c46ccb2b-81e3-415b-ab28-7e8bd65b9e34",
"order_summary_id": "d33e4451-51a5-431b-b68f-f9f0839ec26a",
"product_name": "Goods",
"quantity": 10,
"unit_price": 10,
"total_price": 100,
"created_at": "2025-04-01T06:45:44.000Z",
"updated_at": "2025-04-01T06:45:44.000Z"
}
],
"order_fees": []
}
}
}
🟠400Bad Request
Modified at 2025-04-29 06:11:53