Tạo cửa hàng

API Tạo cửa hàng

 

Sử dụng API này để tạo mới cửa hàng.

Lưu ý : API này cần truyền token ở header.

post/get
https://online-gateway.ghn.vn/shiip/public-api/v2/shop/register
https://dev-online-gateway.ghn.vn/shiip/public-api/v2/shop/register
curl --location --request GET 'https://dev-online-gateway.ghn.vn/shiip/public-api/v2/shop/register' \
                        --header 'Token: 44d7c8ce-78b3-11ea-a40c-e2394613f465' \
                        --header 'Content-Type: application/json' \
                        --data-raw '{
                            "district_id": 1550,
                            "ward_code": "420112",
                            "name": "Tin1123",
                            "phone": "0123456789",
                            "address": "35 dd p12 qtb"
                        }'

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.

district_id Int

Quận/Huyện của cửa hàng.

ward_code  String

Phường/Xã của cửa hàng.

name  String

Tên của cửa hàng.

phone  String

Số điện thoại của cửa hàng.

address  String

Địa chỉ của cửa hàng.

{
                            "code": 200,
                            "message": "Success",
                            "data": {
                                "shop_id":72359            
                            }
                        }

Cấu trúc Response

Trường dữ liệu Mô tả
shop_id

Mã cửa hàng.

{
                            "code": 400,
                            "message": "Create Shop failed: Ward code is invalid",
                            "data": null
                            "code_message": "WARD_IS_INVALID",
                            "code_message_value": "Phường xã không hợp lệ."
                        }