API Guide
API GuideDeveloper Guide
  • Welcome to the API Guide
  • Getting Started
    • Introduction
    • Prerequisites
  • Authentication
  • Endpoint
    • Profile API
      • Get Customer Profile
      • Get Customer ID by phone number
    • Segment API
      • Listing Segments
      • Create new Segment
        • Upload file data for Segment
      • Export data Segment
      • Download exported Segment data
        • Check Segment exporting status
    • Event API
      • Get Event(s) List
      • Get Event History
    • Item API
      • Get Business Object(s) List
      • Get BO Attributes
      • Search Item
      • Explore Item
    • Promotion API
    • App Inbox API
      • Get Message Detail
      • Update Message
      • Count Message Unread
      • Mark All As Read
      • Get Message Performance
      • Get Catalog Performance
      • Get Destination
Powered by GitBook
On this page
  1. Endpoint
  2. Item API

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"
}
{
    "code": 301,
    "message": "Permission denied",
    "data": "You don't have permission to access this request!"
}
PreviousItem APINextGet BO Attributes

Last updated 6 months ago