查询聚合表输出字段
描述
查询聚合表输出字段信息
使用须知
开发前,请仔细阅读开发指南。
- POST请求头
{"Authorization": "Bearer YOUR_APIKEY"}
YOUR_APIKEY
请阅读开发指南了解。
接口URL
POST - /openapi/v1/app/{app_id}/aggregate_table/{entry_id}/field
名词解释
名称 | 说明 |
---|---|
app_id | 应用ID |
entry_id | 该应用内的聚合表ID |
app_id
+entry_id
表示全局唯一的聚合表标识,前往开放平台中的API文档进行查看或通过查询聚合表列表接口查询。
请求参数
无
响应参数
参数名 | 示例值 | 参数类型 | 参数描述 |
---|---|---|---|
text | 商品名称 | String | 字段标题 |
type | text | String | 字段类型 |
name | _widget_1609918037477 | String | 字段原始别名 |
alias | 商品名称 | String | 字段别名 |
响应数据样例
[
{
"text": "商品名称",
"type": "text",
"name": "_widget_1609918037477",
"alias": "商品名称"
},
{
"text": "规格",
"type": "text",
"name": "_widget_1609918037478",
"alias": "_widget_1609918037478"
},
{
"text": "单位",
"type": "text",
"name": "_widget_1609918037479",
"alias": "_widget_1609918037479"
},
{
"text": "库存",
"type": "number",
"name": "_widget_1609918037521",
"alias": "_widget_1609918037521"
}
]