API danh sách mã sản phẩm
Endpoint: api/v1/service/shopcard/products
Method: GET
Header: Cách tạo JWT_TOKEN
{
"X-APPOTAPAY-AUTH": Bearer JWT_TOKEN,
"Content-Type": "application/json"
}
Dữ liệu trả về
Tham số | Kiểu dữ liệu | Mô tả |
---|---|---|
data | Array of Object | Danh sách nhà cung cấp kèm mã thẻ |
data[].productType | String | Nhà cung cấp thẻ |
data[].productCodes | Array of Object | Danh sách thẻ |
data[].productCodes[].name | String | Tên thẻ |
data[].productCodes[].code | String | Mã thẻ |
data[].productCodes[].value | Integer | Giá trị thẻ |
Ví dụ
Response
{
"data": [
{
"productType": "APPOTA",
"productCodes": [
{
"name": "Thẻ Appota 10.000đ",
"code": "AC10",
"value": 10000
}
]
},
...
],
}