Bes_Open_API_English
  1. Table Structure
Bes_Open_API_English
  • Development guideline
    • BesChannels Product Overview
    • Log Update
  • Authentication
    • openapi-Get token
      POST
  • Leads
    • Get Leads List
      POST
    • Get Leads Details
      POST
    • Leads Create/Add
      POST
    • Leads Edit
      POST
    • Leads Delete
      POST
    • Get List of Remark
      POST
    • Add Remarks
      GET
    • Leads Assignment
      POST
    • Get Leads Activities & Attributes
      POST
    • Get Leads Behaviors
      POST
  • Contents
    • Get Content List
      POST
  • Events
    • Get Events List
      POST
  • Table Structure
    • Application acquiry
      POST
    • Table Structure List
      POST
    • Table Structure Details
      POST
  • Behaviors-NEW
    • Add Application
      POST
    • Add Activities
      GET
    • Get Activities
      POST
    • Get Activities Attributes
      POST
    • Add Activities Attributes
      POST
    • Add Users Behaviors
      POST
  • Others
    • Error code
  1. Table Structure

Table Structure List

Developing
POST
/cdp/open-api/list
客户数据平台(CDP)/CDP/表结构
Table structure list information includes multi-channel information such as market lead objects, customer group objects, and WeChat objects.

Request

Query Params
access_token
string 
optional
Body Params application/json
schema_type
string 
required
display_name
string 
required
scene_type
string 
required
page_num
integer 
required
page_size
integer 
required
Example
{
    "schema_type": "0",
    "display_name": "",
    "scene_type": "",
    "page_num": 1,
    "page_size": 10
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.beschannels.com/cdp/open-api/list?access_token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "schema_type": "0",
    "display_name": "",
    "scene_type": "",
    "page_num": 1,
    "page_size": 10
}'

Responses

🟢200success
application/json
Body
code
integer 
required
msg
string 
required
data
object 
optional
total
integer 
required
list
array [object {15}] 
required
Example
{
    "code": 0,
    "msg": "string",
    "data": {
        "total": 0,
        "list": [
            {
                "id": 0,
                "org_id": "string",
                "schema_name": "string",
                "display_name": "string",
                "template_id": 0,
                "description": "string",
                "is_input_data": 0,
                "is_customer": 0,
                "schema_type": 0,
                "is_del": 0,
                "creator": "string",
                "create_time": 0,
                "modifier": "string",
                "modify_time": 0,
                "schema_type_desc": "string"
            }
        ]
    }
}
Modified at 2023-06-07 11:18:31
Previous
Application acquiry
Next
Table Structure Details
Built with