Developer Suite
Register Sandbox
Register Sandbox
  1. Credentials on File
  • Overview
  • API Endpoints
  • Ecommerce Checkout
    • Purchase
      POST
    • Get a transaction details
      POST
    • Close transaction
      POST
    • Check transaction
      POST
    • Refund API
      POST
    • Get transaction list
      POST
    • Exchange rate
      POST
  • Checkout Plugins
    • Prestashop
    • Woocommerce
  • Credentials on File
    • Link Account
      POST
    • Link Card
      POST
    • Purchase using token
      POST
    • Remove account token
      POST
    • Remove card token
      POST
    • Get linked account details
      POST
  • ABA QR API
    • QR API
      POST
  • Payment Link
    • Create payment link
      POST
    • Get payment link details
      POST
  • Pre-auth
    • Complete pre-auth transactions
      POST
    • Complete pre-auh transaction with payout
      POST
    • Cancel pre-purchase transaction
      POST
  • Payout
    • Payout
    • Update a beneficiary status
    • Add a beneficiary to whitelist
  • KHQR Guideline
  • Resources
  1. Credentials on File

Get linked account details

POST
/api/aof/pushback-status
If you encounter issues with the pushback notification and do not receive the details, you can manually retrieve the linked account information.
💡
This API only works for retrieving account tokens. It is not applicable for card tokens.

Request

Header Params

Body Params application/json

Example
{
    "req_time": "20230816044238",
    "merchant_id": "ec000002",
    "return_param": "43242423443",
    "hash": "0aolk6L/lO5RzW...g9thfavA54Q=="
}

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 POST 'https://checkout-sandbox.payway.com.kh//api/aof/pushback-status' \
--header 'Content-Type: application/json' \
--data-raw '{
    "req_time": "20230816044238",
    "merchant_id": "ec000002",
    "return_param": "43242423443",
    "hash": "0aolk6L/lO5RzW...g9thfavA54Q=="
}'

Responses

🟢200Success
application/json
Body

Examples
{
    "data": {
        "ctid": "43182acf04eac...7c7066acf260e",
        "pwt": "4318232588e6...3603b18af4d1cdb2d846d1f58",
        "mask_account": "*****3457",
        "expired_in": 1697343224
    },
    "status": {
        "code": "00",
        "message": "Success!",
        "tran_id": "43242423443"
    }
}
Previous
Remove card token
Next
ABA QR API