Payment with Customer Token
1. Prepare Payment Token Request
Refer to the required parameters below to create a payment token.
Please refer: Payment Token API Request
Pre Requisite |
---|
1. MerchantID, secret code & currencyCode are provided by 2C2P. |
2. Passed in Customer Tokens |
{
"merchantID": "JT01",
"invoiceNo": "1523953661",
"description": "item 1",
"amount": 1000.00,
"currencyCode": "SGD",
"customerToken": ["28052010234224845229", "7305201872122484776"] //Pass in Token
}
Â
2. Receive Payment Token Response
Refer to the sample response returned below.
Please refer: Payment Token API Response
{
"webPaymentUrl": "https://sandbox-pgw-ui.2c2p.com/payment/4.3/#/token/kSAops9Zwhos8hSTSeLTUcCrwcnrndJUZanGJy3fBEsXCiYmynwxHvK5h7XPBadJqD0nG7v65t5N2jPVrnwX2jL4nu%2bKKSegjUjERKCyWPg%3d",
"paymentToken": "kSAops9Zwhos8hSTSeLTUcCrwcnrndJUZanGJy3fBEsXCiYmynwxHvK5h7XPBadJqD0nG7v65t5N2jPVrnwX2jL4nu+KKSegjUjERKCyWPg=",
"respCode": "0000",
"respDesc": "Success"
}
Â
3. Validation of Payment Token
Proceed only when the parameter "respCode" is "0000" which indicates success. Otherwise, terminate the payment process. Refer to the Payment Response Code below.
Please Refer : Payment Response Code
Â
4. Redirect to Payment Page
Redirect to the payment page via browser. The payment page URL is returned from the parameter "webPaymentUrl". Customers can select their stored card on the payment page.
Â
5. Receive Payment Response via backend API
Please Refer : Payment Response - Backend API
The parameter "backendReturnUrl" that was previously sent via Payment Token Request is the merchant endpoint that will receive a back end notification. If the parameter "backendReturnUrl" is not set, the system will obtain the backend return URL from the merchant profile by default. This is using server-to-server POST method.
{
"merchantID": "JT04",
"invoiceNo": "280520075921",
"accountNo": "411111XXXXXX1111",
"amount": "230.87",
"currencyCode": "THB",
"customerToken": "28052010234224845229",
"tranRef": "2868821",
"referenceNo": "2785703",
"approvalCode": "531484",
"eci": "05",
"transactionDateTime": "20200528080508",
"respCode": "0000",
"respDesc": "Success"
}
Â
6. Receive Payment Response via browser redirection
Please Refer : Payment Response - Frontend API
The parameter "frontendReturnUrl" that was previously sent via [Payment Token Request](doc:api-payment-token-request-parameter) is the merchant page that customers will be redirected to. If the parameter "frontendReturnUrl" is not set, the system will obtain the front end return URL from the merchant profile by default. Refer to the sample response returned below.
{"invoiceNo":"280520075921","channelCode":"CC","respCode":"2000","respDesc":"Transaction is completed, please do payment inquiry request for full payment information."}
The parameter "respCode" specifies the status of the transaction and also indicates what action should be performed next. Refer to the Payment Flow Response Code below.
Please refer : Payment Flow Response Code
Â
7. Payment Inquiry to retrieve the payment information
Please refer : Payment Inquiry API
For merchants who do not implement "Receive Payment Response via backend API", they are required to call Payment Inquiry API to receive the payment response.
Updated about 1 year ago