Skip to main content

Two Click Payment

Two-click payment adalah konsep model pembayaran yang mengacu pada proses checkout yang disederhanakan untuk pembelian online. Ide di balik pembayaran dua klik adalah untuk mengurangi jumlah langkah yang diperlukan pelanggan untuk menyelesaikan transaksi, sehingga prosesnya menjadi cepat dan nyaman. Karena informasi data kartu kredit pelanggan sudah tersimpan, mereka hanya perlu mengisi Kode Keamanan Kartu untuk memproses transaksi.

info

Sebelum melakukan proses ini, pastikan Anda telah melakukan Retrieve Stored Card API untuk mendapatkan token kartu kredit yang digunakan untuk transaksi.

Data Request

NoNameTypeMandatoryMin LengthMax LengthDescription
1 orderObjectM112Detail of Order
2 customerObjectM18Detail of Customer
3 urlObjectM14Detail of Url
4 billingObjectO11Detail of Billing
5 shippingObjectO14Detail of Shipping
6 metaObjectO11Detail of MetaData
7 cardObjectM17Detail of Card
8 recurringObjectO111Detail of Recurring
9 sourceOfFundsObjectM111Detail of SourceOfFunds
10 deviceObjectO17Detail of Device

Sample Request

{
"customer": {
"id": "hajar.finnet@gmail.com",
"email": "hajar.finnet@gmail.com",
"firstName": "Hajar",
"lastName": "Ismail",
"mobilePhone": "+6281286288844"
},
"order": {
"id": "1685522371836",
"amount": "1000",
"currency": "IDR",
"description": "Testing"
},
"url": {
"callbackUrl": "https://sandbox.finpay.co.id/simdev/finpay/result/tangkapCurl.php"
},
"card": {
"token": "81b36a850c2e40458bad296f952084b516c919ca717d448722782769b81b9fd9",
"storedOnFile": "STORED"
},
"sourceOfFunds": {
"type": "cc"
}
}

Data Response

NoNameTypeMandatoryMin LengthMax LengthDescription
1 responseCodeEnumM17Response Code
2 responseMessageStringM1500Response Message
3 paymentCodeStringO130Payment Code
4 redirecturlStringM1320Redirect URL
5 expiryLinkStringM119Expiry Link
6 processingTimeNumberM120Processing Time
7 appurlStringO1320App URL
8 imageurlStringO1320Image URL
9 accountListArrayO14Account List

Sample Response

{
"responseCode": "2000000",
"responseMessage": "Success",
"redirecturl": "https://devo.finpay.id/pg/payment/card/saved/c5f6c6be1943b963ee764b374f8a24a708ed42c26a6727fb13d6c583b75db316",
"expiryLink": "2023-06-01 15:39:31",
"processingTime": 0.2061138153076172
}