Get Business Object(s) List
Retrieve a list of available BOs in the CDP.
GET
http://api.ants.tech/access/api/item/list
Headers
Name
Type
Description
Authorization*
String
Bearer <ACCESS_TOKEN
>
{
"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"
}
Last updated