获取数据集
开发环境
开发环境
GET
/v1.3/data_set/get
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1.3/data_set/get' \
--header 'access_token;' \
--header 'timestamp;' \
--header 'nonce;' \
--data-urlencode 'account_id=<ACCOUNT_ID>' \
--data-urlencode 'user_action_set_id=1' \
--data-urlencode 'data_set_id=22' \
--data-urlencode 'env_type=1'
响应示例响应示例
{
"code": 0,
"message": "",
"message_cn": "",
"data": {
"list": [
{
"account_id": "<ACCOUNT_ID>",
"user_action_set_id": 1,
"data_set_id": 22,
"env_type": 1
}
]
}
}
请求参数
Header 参数
access_token
string
必需
默认值:
<ACCESS_TOKEN>
timestamp
string
必需
MarketingAPI 所使用的时间戳,若无特殊说明,均为秒级时间戳
MarketingAPI 所使用的时区为GMT+8,例如当时间戳为1494840119时,表示 2018-05-15 17:21:59
默认值:
<TIMESTAMP>
nonce
string
必需
默认值:
<NONCE>
Body 参数application/x-www-form-urlencoded
account_id
integer
必需
示例值:
<ACCOUNT_ID>
user_action_set_id
integer
可选
示例值:
1
data_set_id
integer
可选
示例值:
22
env_type
integer
可选
示例值:
1
返回响应
修改于 2023-11-08 02:57:43