Trả lại hàng

API Trả lại hàng

 

Sử dụng API này để trả lại hàng khi người gửi muốn hủy giao.

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

post/get
https://online-gateway.ghn.vn/shiip/public-api/v2/switch-status/return
https://dev-online-gateway.ghn.vn/shiip/public-api/v2/switch-status/return
curl --location --request POST 'https://dev-online-gateway.ghn.vn/shiip/public-api/v2/switch-status/return' \
        --header 'token: 637170d5-942b-11ea-9821-0281a26fb5d4' \
        --header 'ShopId: 885' \
        --header 'Content-Type: application/json' \
        --data-raw '{
            "order_codes":["5ENLKKHD"]
        }'
        
        

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.

shop_id Int

Mã định danh của cửa hàng.

order_codes String

Mã đơn hàng của GHN trả về cho khách hàng.

{
            "code": 200,
            "message": "Success",
            "data":[
            {
            "order_code":"5ENLKKHD"  
            "result":true 
            "message":"OK" 
        }
        ]
        }
h2>Cấu trúc Response
Trường dữ liệu Mô tả
order_code

Mã đơn hàng.

result

Kết quả.

message

Thông bá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"
        }