- Checkout Page
- API Documentation
- Master Data
- Payin Method
- Payout Method
- Payin
- Payout
- Payout Beneficiary
- Transaction
- Wallet
- Customer
- Checkout
- Webhook
- Features Documentation
Get All Checkout
GET
/api/v1/checkout
limit
and page
parameters as per the requirements.Request
Query Params
currency
string
optional
country_code
string
optional
payin_method_name
string
optional
customer_id
string
optional
merchant_id
string
optional
page
integer
required
Example:
1
limit
integer
required
Example:
10
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?currency&country_code&payin_method_name&customer_id&merchant_id&page=1&limit=10' \
--header 'X-token;'
Responses
🟢200Success
application/json
Body
status
boolean
required
message
string
required
data
array [object {19}]
required
id
string
required
checkout_token
string
required
amount
integer
required
currency
string
required
country_code
string
required
country_name
string
required
payin_method_name
null
required
payin_type
null
required
description
string
required
merchant_id
string
required
customer_id
null
required
redirect_url
null
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
webhook_url
null
required
total
integer
required
page
integer
required
limit
integer
required
totalPages
integer
required
Example
{
"status": true,
"message": "OK",
"data": [
{
"id": "1d6af24d-2dfa-4111-9805-d07c56124593",
"checkout_token": "$2b$10$Q90XGi4vAyltVRDkIssPSecdjD.sRmE5kG.JM1hlv7BAVEb3eDFcS",
"amount": 100,
"currency": "AUD",
"country_code": "AU",
"country_name": "AUSTRALIA",
"payin_method_name": null,
"payin_type": null,
"description": "invoice_15012025_002",
"merchant_id": "5a741ab5-a506-4d38-ade7-b039e38134a6",
"customer_id": null,
"redirect_url": null,
"advanced_redirect_url": null,
"expire_at": "2025-01-17T06:57:50.000Z",
"additional_info": {
"payid_reference": "invoice_15012025_002",
"transaction": "invoice_15012025_002",
"transaction_date": "2025-01-15T06:55:19.841Z",
"order_reference": "invoice_15012025_002",
"customer_full_name": "LALISA MANOBAL",
"customer_email": "lalisamanobal@gmail.com",
"customer_phone": "+6285156789112",
"brand": "BLACKPINK",
"credit_type": "CHECKOUT",
"payer_id": "invoice_15012025_002",
"recon_id": "invoice_15012025_002",
"order_reference_1": "invoice_15012025_002",
"order_reference_2": "invoice_15012025_002",
"trx_type": "CHECKOUT",
"fee_taken": 0,
"fee_expected": 0,
"charge_back": 0,
"rolling_serve": 0,
"retrieval": 0,
"is_black_list": 0,
"ip_address": "TEST",
"billing_address_country": "TEST",
"billing_address_city": "TES",
"billing_address_zip_code": "TES",
"billing_address": "TES",
"bin": "TES",
"is_3ds": "TES",
"bank_psp": "TES"
},
"created_at": "2025-01-15T06:57:53.000Z",
"updated_at": "2025-01-15T06:57:53.000Z",
"deleted_at": null
}
],
"total": 4,
"page": 1,
"limit": 10,
"totalPages": 1
}
🟠400Bad Request
Modified at 2025-04-29 06:11:53