API: Get POS & Terminal Binding List
Through this API interface, you will be able to obtain a list of POS under the current merchant ID along with the bound payment terminals.
Get POS & Terminal Binding List
Test Enviroment:
POST https://oversea.paywizard.biz/ovstrade/semiOpen/v3/queryTerminalList
Production Enviroment:
POST https://portal.paywizard.biz/ovstrade/semiOpen/v3/queryTerminalList
Headers
Name
Value
Content-Type
application/json
jwt-token
Merchant Token provided by Paywizard
Request Body
Name
Type
Mandatory
Description
clientId
string
Developer ID
merchantId
String
Merchant ID
Request Sample
{
    "clientId": "client12345",
    "merchantId": "10800000003",
}Response Body
Name
Type
Mandatory
Description
code
int
Response Code
(200 Success,
Non-200 Failed)
msg
String
Response Message
timestamp
String
Date/Time(UTC)
data
Object
Response Data
-terminalId
String
Terminal ID
-terminalSn
String
Terminal S/N
-bindPosId
String
Binding POS ID
Response Sample
{
    "code": 200,
    "msg": "200",
    "data": [
        {
            "terminalId": "12212024123456",
            "terminalSn": "WP2024123456",
            "bindPosId": "POS123456"
        }
    ],
    "timestamp": "2024-07-23 17:57:00"
}Last updated