For the complete documentation index, see llms.txt. This page is also available as Markdown.

Check shipping address

API for checking shipping address

CheckAddressInfo

POST /api/Customer/CheckAddressInfo

Headers

Name
Value

ClientID

From login api

Token

From login api

Body

Name
Type
Description

Address

string

Shipping address

Response

{
    "DeliveryArea": "IN",
    "IsError": false,
    "Errors": [],
    "ErrorMessage": ""
}
{
    "IsError": true,
    "ErrorMessage": "Bạn cần đăng nhập để truy cập chức năng này."
}
Name
Type
Description

DeliveryArea

string

  • IN: Delivery address within the service area (Order can be created)

  • OUT: Delivery address outside the service area (Order can be created)

  • UNKNOWN: Unrecognized delivery address (Not ready for order creation)

IsError

bool

IsError

ErrorMessage

string

Error message

Example

Last updated