adjust-icon

事件终端

使用事件终端接收事件 slug 来在您的报告服务请求中使用。通过此终端,您可以使用事件的可读名称搜索事件,返回相关实用信息。

返回事件

终端
GET https://automate.adjust.com/reports-service/events

返回事件对象列表。

参数

响应参数

Section

响应格式
[
{
"id": "string",
"name": "string",
"short_name": "",
"section": "",
"formatting": "money",
"increase_is_negative": false,
"description": "",
"app_token": ["string"],
"tokens": ["string"]
}
]

响应

终端返回以下响应:

示例

cURL
$ curl \
'https://automate.adjust.com/reports-service/events?events__contains=purchase' \
--header 'Authorization: Bearer {API_TOKEN}'
成功响应
[
{
"id": "purchase",
"name": "Purchase event",
"short_name": "PUR",
"section": "Revenue",
"formatting": "money",
"increase_is_negative": false,
"description": "",
"app_token": ["4zb92bmajmrd"],
"tokens": ["abc123"]
}
]