API Lấy OTP (Affiliate)
Sử dụng API này để lấy OTP từ số điện thoại chủ cửa hàng.
Lưu ý : Ở API này cần truyền token ở header
post/gethttps://online-gateway.ghn.vn/shiip/public-api/v2/shop/affiliateOTP
https://dev-online-gateway.ghn.vn/shiip/public-api/v2/shop/affiliateOTP
curl --location --request POST 'https://dev-online-gateway.ghn.vn/shiip/public-api/v2/shop/affiliateOTP' \
--header 'Content-Type: application/json' \
--header 'Token: f982a85e-8145-11ea-be3d-06ca571b73c9' \
--header 'Content-Type: text/plain' \
--data-raw '{
"phone": "0984330700"
}'
Cấu trúc Request
Trường dữ liệu | Kiểu dữ liệu | Mô tả |
---|---|---|
token | String |
Token của đối tác |
phone | Int |
Số điện thoại của khách hàng. |
{
"code": 200,
"message": "Success",
"data": {
"TLL":600
}
}
{
"code": 400,
"message": "Client have existed in Shop",
"data": null
"code_message": "CLIENT_HAVE_EXISTED",
"code_message_value": "Người dùng đã được thêm vào cửa hàng"
}