Get TID(s)

Used to get the list of information of stores/points of sale that have been synchronized.

POST

https://<vietqr-host>/<basepath>/api/tid/list-tid

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequiredDescription

page

Integer

Optional

Page number to be displayed.

size

Integer

Optional

Max number of items to be displayed per page.

mid

String

Yes

ID of merchant.

Response

{
    "metadata": {
        "page": 1,
        "size": 20,
        "totalPage": 1,
        "totalElement": 1
    },
    "data": [
        {
            "bankAccount": "bank_account_applicable_to_point_of_sale",
            "bankCode": "bank_code",
            "terminalCode": "point_of_sale_code",
            "terminalName": "point_of_sale_name",
            "terminalAddress": "point_of_sale_address",
            "tid": "point_of_sale_ID"
        }
    ]
}

Last updated