> For the complete documentation index, see [llms.txt](https://apidoc.247express.vn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidoc.247express.vn/english-1.0.6/customer/check-shipping-address.md).

# Check shipping address

## CheckAddressInfo

<mark style="color:green;">`POST`</mark> `/api/Customer/CheckAddressInfo`

**Headers**

| Name     | Value          |
| -------- | -------------- |
| ClientID | From login api |
| Token    | From login api |

**Body**

| Name    | Type   | Description      |
| ------- | ------ | ---------------- |
| Address | string | Shipping address |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "DeliveryArea": "IN",
    "IsError": false,
    "Errors": [],
    "ErrorMessage": ""
}
```

{% endtab %}

{% tab title="401" %}

```json
{
    "IsError": true,
    "ErrorMessage": "Bạn cần đăng nhập để truy cập chức năng này."
}
```

{% endtab %}
{% endtabs %}

| Name         | Type   | Description                                                                                                                                                                                                                                              |
| ------------ | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| DeliveryArea | string | <p></p><ul><li>IN: Delivery address within the service area (Order can be created)</li><li>OUT: Delivery address outside the service area (Order can be created)</li><li>UNKNOWN: Unrecognized delivery address (Not ready for order creation)</li></ul> |
| IsError      | bool   | IsError                                                                                                                                                                                                                                                  |
| ErrorMessage | string | Error message                                                                                                                                                                                                                                            |

### Example

```json
{
    "Address": "326 Võ Văn Kiệt, Phường Cầu Ông Lãnh, HCM"
}
```
