- API调用指南
- 鉴权(访问令牌)
- 素材
- 联动打标
- 素材组
- 元数据(Metadata)
- 内容分发
- 01 分发看板
- 02 内容中心
- 03 私域中心
- 04社媒分发
- 消息
- 租户基础信息
- 用户信 息
- 埋点
- 审批中心
- 规则引擎
- 冷库归档
- 客户端开放接口
- 历史版本(不推荐)
- 日常测试
- 测试POST
06 查询内容模块点位信息
POST
https://open-auth.tezign.com/open-api/standard/v1/getBlockPosition
内容分发看板
请求参数
Header 参数
Access-token
string
必需
示例值:
b46eda34-bf02-452b-b518-75d68a7159ab
Token-type
string
必需
示例值:
bearer
Content-Type
string
必需
示例值:
application/json
x-asm-prefer-tag
string
可选
默认值:
version-env-07
Body 参数application/json
token
string
必需
param
object
必需
blockId
integer
内容模块ID
示例
{
"token": "",
"param": {
"blockId": 327
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open-auth.tezign.com/open-api/standard/v1/getBlockPosition' \
--header 'Access-token: b46eda34-bf02-452b-b518-75d68a7159ab' \
--header 'Token-type: bearer' \
--header 'x-asm-prefer-tag: version-env-07' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "",
"param": {
"blockId": 327
}
}'
返回响应
🟢200成功
application/json
Body
code
string
必需
message
string
必需
result
array [object {3}]
必需
positionCode
string
点位code
desc
string
描述
categoryType
string
点位存储类型
示例
{
"code": "0",
"message": "success",
"result": [
{
"positionCode": "text_title",
"desc": "标题",
"categoryType": "text"
},
{
"positionCode": "text_content",
"desc": "详情描述",
"categoryType": "text"
},
{
"positionCode": "image_cover",
"desc": "封面图",
"categoryType": "image"
},
{
"positionCode": "image_detail",
"desc": "详情图",
"categoryType": "image"
},
{
"positionCode": "text_button_name",
"desc": "CTA文案",
"categoryType": "text"
},
{
"positionCode": "text_button_link",
"desc": "CTA跳转链接",
"categoryType": "text"
}
]
}