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
    • Payment
      POST
    • Renew Token
      POST
    • Get token details
      POST
    • Remove token
      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

Remove token

POST
/api/payment-credential/v3/token-management/remove-token
This API allows you to remove a customer's linked account/card token from your platform. Once the token is removed, this action cannot be undone, and the token will no longer be valid for purchases. If user/merchant to to use this token in purchas. A push notification will be send to ABA Mobile user (note only for ABA Card and ABA Account).

Request

Header Params

Body Params application/json

Example
{
    "request_time": "string",
    "merchant_id": "string",
    "ctid": "string",
    "pwt": "string",
    "hash": "string"
}

Request Code 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/payment-credential/v3/token-management/remove-token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "request_time": "string",
    "merchant_id": "string",
    "ctid": "string",
    "pwt": "string",
    "hash": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "status": {
        "code": "00",
        "message": "Success",
        "trace_id": "a07481d6e19.....ca201f8200a"
    }
}
🟠400Bad Request
🟠403Forbidden
Previous
Get token details
Next
ABA QR API