Get MID(s)

Used to get the list of information of sub-agents that have been synchronized under the main agent.

POST

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

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.

Response

{
    "metadata": {
        "page": 1,
        "size": 20,
        "totalPage": 1,
        "totalElement": 1
    },
    "data": [
        {
            "merchantIdentify": "TIN/ID/Business_Registration",
            "mid": "merchant_ID",
            "merchantName": "merchant_short_name",
            "merchantFullName": "merchant_full_name",
            "merchantAddress": "merchant_address",
            "contactEmail": "contact_email",
            "contactPhone": "contact_phone"
        }
    ]
}

Last updated