API 3: 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/queryTerminalList

Production Enviroment:

POST https://portal.paywizard.biz/ovstrade/semiOpen/queryTerminalList

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

version

String

1.0.0

Request Sample

{
    "clientId": "client12345",
    "merchantId": "10800000003",
    "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)

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