Paywizard DOCS
WizarPOS
  • Overview
  • Intro - Choose Your Best Practice
  • Cloud API
    • Quick Start - Cloud API
    • POS & Payment Terminal Binding Process
      • API 1: [Deprecated]Get Access Tokens
      • API 2: Bind POS & Payment Terminal
      • API 3: Get POS & Terminal Binding List
      • API : Unbind Terminal with POS
    • Do Transactions
      • API 4: POS Initiate Transaction
        • Transaction Request Example
      • API 5: POS System Query Transaction Results
      • Transaction Result Callback Interface
      • Transaction Type
      • Terminal API: Subscribe Transaction Results
  • HOST TO HOST INTEGRATION
    • Quick Start - Host to Host Integration
    • API: Transaction Result Push
    • API: Get Transaction Result
  • Semi integration
    • Payment App Integration Protocol
    • Payment App AIDL Integration
  • e-Receipt
    • e-Receipt Interface Intro
    • Terminal API : Upload Transaction Info
    • Terminal API : Upload Settlement Info
  • ONLINE PAYMENT INTEGRATION
    • Web Element Integration
    • Client Checkout Page SDK
Powered by GitBook
On this page
  • This API interface allows you to unbind your POS and payment terminal.
  • Unbind Terminal with POS
  1. Cloud API
  2. POS & Payment Terminal Binding Process

API : Unbind Terminal with POS

This API interface allows you to unbind your POS and payment terminal.

Unbind Terminal with POS

POST https://uat.paywizard.biz/ovstrade/semiOpen/unbindTerminal

Headers

Name
Value

Content-Type

application/json

jwt-token

The token responesed from Get Access Token

Request Body

Name
Type
Mandatory
Description

clientId

string

Developer ID

merchantId

String

Merchant ID

posId

String

Point of Sale ID (POSID & Terminal ID at least one in request.)

terminalId

String

Paymen Terminal ID

(POSID & Terminal ID at least one in request.)

version

String

1.0.0

Request Sample

{
    "clientId": "825429536610058240",
    "merchantId": "10800000003",
    "posId": "POS1344444",
    "terminalId": "T1344444",
    "version": "1.0.0"
}

Response Body

Name
Type
Mandatory
Description

code

int

Response Code

(200 Success,

Non-200 Failed)

msg

String

Response Message

timestamp

String

Date/Time(UTC)

Response Sample

{
    "code": 200,
    "msg": "success",
    "timestamp": "2024-07-23 17:57:00"
}
PreviousAPI 3: Get POS & Terminal Binding ListNextDo Transactions

Last updated 3 months ago