- Checkout Page
- API Documentation
- Master Data
- Payin Method
- Payout Method
- Payin
- Payout
- Payout Beneficiary
- Transaction
- Wallet
- Customer
- Checkout
- Webhook
- Features Documentation
Create New Checkout
PATCH
/api/v1/checkout
Request
Header Params
X-token
string
required
signature
string
optional
Body Params application/json
checkout_token
string
required
payin_method_name
string
required
Example
{
"checkout_token": "e4e1f5915992cafa0a07321aca4ab187280e3871daa36fdb115ddb3fb1bca97",
"payin_method_name": "au_bank_npp"
}
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 PATCH 'https://api.paycombat.com/api/v1/checkout' \
--header 'X-token;' \
--header 'signature;' \
--header 'Content-Type: application/json' \
--data-raw '{
"checkout_token": "e4e1f5915992cafa0a07321aca4ab187280e3871daa36fdb115ddb3fb1bca97",
"payin_method_name": "au_bank_npp"
}'
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
country_name
string
required
payin_method_name
string
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
Example
{
"status": true,
"message": "OK",
"data": {
"id": "a25cd78e-d1e5-4b7d-a97c-63b27186c62a",
"checkout_token": "e4e1f5915992cafa0a07321aca4ab187280e3871daa36fdb115ddbb3fb1bca97",
"amount": 100,
"currency": "AUD",
"country_code": "AU",
"country_name": "AUSTRALIA",
"payin_method_name": "au_bank_npp",
"payin_type": null,
"description": "invoice_15012025_003",
"merchant_id": "5a741ab5-a506-4d38-ade7-b039e38134a6",
"customer_id": null,
"redirect_url": null,
"advanced_redirect_url": null,
"expire_at": "2025-01-17T07:21:08.000Z",
"additional_info": {
"payid_reference": "invoice_15012025_003",
"transaction": "invoice_15012025_003",
"transaction_date": "2025-01-15T06:55:19.841Z",
"order_reference": "invoice_15012025_003",
"customer_full_name": "LALISA MANOBAL",
"customer_email": "lalisamanobal@gmail.com",
"customer_phone": "+6285156789112",
"brand": "BLACKPINK",
"credit_type": "CHECKOUT",
"payer_id": "invoice_15012025_003",
"recon_id": "invoice_15012025_003",
"order_reference_1": "invoice_15012025_003",
"order_reference_2": "invoice_15012025_003",
"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-15T07:21:11.000Z",
"updated_at": "2025-01-15T07:33:48.000Z",
"deleted_at": null
}
}
🟠400Bad Request
Modified at 2025-04-29 06:11:53