PAYON Payment Gateway
  • Table of Contents
  • Revision History
  • How is Work
    • PAYON PG PAYMENT
      • PAYON's Wallet Payment via PAYON Mobile App
      • PAYON Payment via PAYON's Card
      • CREDIT/DEBIT Online Payment
      • PPCBank Mobile Pay via PPCBank Mobile App(Coming Soon)
      • KHQR Online Payment
      • Binding Payment via PAYON's Card
      • Binding Payment via Credit/Debit's Card
  • PayOn PG Overview
    • Desktop Views
      • PAYON Payment Method
        • PAYON Card Payment
        • PAYON QR Payment
      • Credit/Debit Payment
      • KHQR Payment
      • PPCBank Payment
    • Mobile Views
      • PAYON Payment Method
      • Credit/Debit Payment Method
      • KHQR Payment
        • Bakong APP
        • PPCBank App
        • Other Bank App
      • PPCBank Payment
    • Obtain your API Keys
    • Platform Application Settings
  • Work flows
    • Payment Request Workflow
    • Page Redirection Workflow
  • Getting Started
    • Generate Checkout Link
    • Try redirect to Checkout Link
    • Test your payment
    • Add Card(Create Binding)
  • PAYON API Reference
    • Payment Order Registration
    • Cancellation Payment
    • Pre Auth Completion Payment
    • Refunds Payment
    • Transaction Orders History
    • Get Transaction Status
    • Push Back Notification
    • Create Binding
    • Get Binding List
    • Create Binding PIN
    • Enable / Disable PIN
    • Merchant Reconciliation
  • TEST Cards and Accounts
    • Test Card&Account
  • PAYON Library
  • PayOn Library
    • How to use PayOn Library
    • How to encrypt data with RSA
  • PAYON APPS
    • Environments
  • 3RD PARTY APPS
    • PPCBANK Environment
    • Bakong Environment
Powered by GitBook
On this page
  • Get Transaction Status
  • Example Request

Was this helpful?

  1. PAYON API Reference

Get Transaction Status

The purpose of this API is for check transaction's status. In order to interact with this API you need to have API account to obtain your authentication's token for authenticate user account.

Environment

URL

TEST

PRODUCTION

Get Transaction Status

POST {{URL}}/pg/transaction/status

This endpoint allows to get transaction' status.

Request Body

Name
Type
Description

merchantId

string

Merchant's Identifier

amount

string

Transaction's amount

currency

string

Currency (Format as USD)

txId

string

Merchant's transaction Identifier

termId

string

Merchant Terminal Identifier

{
    "resultMsg": "Success",
    "resultCode": "0000",
    "resultData": {
        "txDt": "20210212",
        "txSeqNo": "20210212",
        "txStCd": "COMPLETE",
        "trt": "PURCHASE",
        "paymentMethod": "CREDIT_DEBIT",
        "merchantId": "C0000143",
        "termId": "CT03000003",
        "wdlAcNo": "************0022",
        "tracNo": "1613104202987",
        "amount": 2,
        "currencyCode": "USD",
        "apprNo": "763647",
        "apprDttm": "20210212113016"
    }
}
{
    "resultMsg": "System error",
    "resultCode": "9999",
    "resultData": null
}
1

Example Request

curl --location --request POST 'http://pgtest.payon.com.kh/pg/transaction/status' \
--data-raw '{
    "termId":"CT03000003",
    "txId":"1613104202987",
    "merchantId":"C0000143",
    "currency":"USD",
    "amount":"1"
}'
POST /pg/transaction/status HTTP/1.1
Host: pgtest.payon.com.kh
Content-Length: 126

{
    "termId":"CT03000003",
    "txId":"1613104202987",
    "merchantId":"C0000143",
    "currency":"USD",
    "amount":"1"
}
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('http://pgtest.payon.com.kh/pg/transaction/status');
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->setConfig(array(
  'follow_redirects' => TRUE
));
$request->setBody('{\n    "termId":"CT03000003",\n    "txId":"1613104202987",\n    "merchantId":"C0000143",\n    "currency":"USD",\n    "amount":"1"\n}');
try {
  $response = $request->send();
  if ($response->getStatus() == 200) {
    echo $response->getBody();
  }
  else {
    echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
    $response->getReasonPhrase();
  }
}
catch(HTTP_Request2_Exception $e) {
  echo 'Error: ' . $e->getMessage();
}
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'http://pgtest.payon.com.kh/pg/transaction/status',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "termId":"CT03000003",
    "txId":"1613104202987",
    "merchantId":"C0000143",
    "currency":"USD",
    "amount":"1"
}',
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
var settings = {
  "url": "http://pgtest.payon.com.kh/pg/transaction/status",
  "method": "POST",
  "timeout": 0,
  "data": "{\n    \"termId\":\"CT03000003\",\n    \"txId\":\"1613104202987\",\n    \"merchantId\":\"C0000143\",\n    \"currency\":\"USD\",\n    \"amount\":\"1\"\n}",
};

$.ajax(settings).done(function (response) {
  console.log(response);
});
var data = "{\n    \"termId\":\"CT03000003\",\n    \"txId\":\"1613104202987\",\n    \"merchantId\":\"C0000143\",\n    \"currency\":\"USD\",\n    \"amount\":\"1\"\n}";

var xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener("readystatechange", function() {
  if(this.readyState === 4) {
    console.log(this.responseText);
  }
});

xhr.open("POST", "http://pgtest.payon.com.kh/pg/transaction/status");

xhr.send(data);

PreviousTransaction Orders HistoryNextPush Back Notification

Last updated 3 years ago

Was this helpful?

http://pgtest.payon.com.kh
https://pg.payon.com.kh