API Lấy danh sách cửa hàng
Sử dụng API này để lấy danh sá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/all
https://dev-online-gateway.ghn.vn/shiip/public-api/v2/shop/all
curl --location --request POST 'https://dev-online-gateway.ghn.vn/shiip/public-api/v2/shop/all' \
--header 'Content-Type: application/json' \
--header 'Token: d6e3dccb-6289-11ea-8b85-c60e4edfe802' \
--data-raw '{
"offset": 0,
"limit": 50,
"client_phone": ""
}'
Cấu trúc Request
Trường dữ liệu | Kiểu dữ liệu | Mô tả |
---|---|---|
token | String |
Dùng để xác định định danh của tài khoản và dùng cho các trường hợp gọi tới các API. |
offset | Int |
|
limit | Int |
Giới hạn dữ liệu trả về không quá 200. |
clientphone | String |
Số điện thoại của chủ cửa hàng, để lọc ra cửa hàng. Có thể: null |
{
"code": 200,
"message": "Success",
"data":{
"last_offset":60429
"shops"[
{
"_id":59037
"name":"Kinh doanh Corgi"
"phone":0705099871
"address":"3 Đồng Đen, Tân Bình, Hồ Chí Minh, Việt Nam"
"ward_code":"21410"
"district_id":1455
"client_id":2500055
"bank_account_id":0
"status":1
"location":""
"version_no":"0730c906-1651-4171-91cd-2bddfc030a5c"
"is_created_chat_channel":"false"
"updated_ip":115.77.233.200
"updated_employee":0
"updated_client":2500055
"updated_source":"shiip"
"updated_date":"2021-06-30T10:36:55.043Z"
"created_ip":35.247.155.234
"created_employee":0
"created_client":2500055
"created_source":"shiip"
"created_date":"2021-06-30T10:36:55.043Z"
}
]
}
Cấu trúc Response
Trường dữ liệu | Mô tả |
---|---|
name |
Tên cửa hàng. |
phone |
Số điện thoại cửa hàng. |
address |
Địa chỉ cửa hàng. |
ward_code |
Phường/Xã cửa hàng. |
district_id |
Quận/Huyện cửa hàng. |
client_id |
Thông tin cá nhân. |
status |
Trạng thái. |
updated_ip |
Ip cập nhật. |
updated_employee |
Nhân viên cập nhật. |
updated_client |
Client cập nhật. |
updated_source |
Nguồn cập nhật. |
updated_date |
Ngày cập nhật. |
created_ip |
Ip tạo. |
created_employee |
Nhân viên tạo. |
created_client |
Client tạo. |
created_source |
Tạo từ nguồn. |
created_date |
Ngày tạo. |
{
"code": 400,
"message": "code=400, message=Syntax error: offset=30, error=invalid character '}' after array element, internal=invalid character '}' after array element",
"data": null
"code_message": "USER_ERR_COMMON"
}