# Get Business Object(s) List

<mark style="color:blue;">`GET`</mark> `http://api.ants.tech/access/api/item/list`

#### Headers

| Name                                            | Type   | Description             |
| ----------------------------------------------- | ------ | ----------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer <`ACCESS_TOKEN`> |

{% tabs %}
{% tab title="200: OK The request is successful, the server responds with a list of available BO(s)." %}

```json
{
    "code": 200,
    "message": "Success",
    "data": {
        "entries": [
            {
                "itemTypeName": "product",
                "itemTypeId": 1,
                "itemTypeDisplay": "Product",
                "itemDisplayMultilang": {
                    "EN": "Product",
                    "VI": "Sản phẩm",
                    "JA": "製品",
                    "DEFAULT_LANG": "EN"
                },
                "status": "1",
                "storageType": "2",
                "translateLabel": "Product"
            },
            {
                "itemTypeName": "customers",
                "itemTypeId": -1003,
                "itemTypeDisplay": "Customer",
                "itemDisplayMultilang": {
                    "EN": "Customer",
                    "VI": "Khách hàng",
                    "JA": "お客様",
                    "DEFAULT_LANG": "EN"
                },
                "status": "1",
                "storageType": "2",
                "translateLabel": "Customer"
            }
            // ... More Business Objects
        ],
        "meta": {
            "total": 54
        }
    },
    "codeMessage": null,
    "duration": "0.139 ms"
}
```

{% endtab %}

{% tab title="403: Forbidden The authorization process is failed, caused by an invalid token, an expired token or a token without the valid scope." %}

```json
{
    "code": 301,
    "message": "Permission denied",
    "data": "You don't have permission to access this request!"
}
```

{% endtab %}
{% endtabs %}
