Get Token

Dùng để lấy bearer token truy cập API tạo mã thanh toán VietQR.

POST

https://<vietqr-host>/<basepath>/api/token_generate

Headers

NameValue

Content-Type

application/json

Authorization

Basic Authentication: Base64[username:password]

Body

NameTypeDescription

access_token

String

Là Bearer Token được VietQR cung cấp để truy cập tạo mã thanh toán VietQR.

token_type

String

Là dạng token dạng “Bearer”.

expires_in

String

Thời gian hết hạn của token. Mặc định là 300 giây.

Response

{
    "access_token": "bearer_token_của_đối_tác",
    "token_type": "Bearer",
    "expires_in": 300
}

Last updated