adjust-icon

イベントエンドポイント

イベントエンドポイントを使用して、レポートサービスクエリで使用するイベントslugを取得します。このエンドポイントを使用すると、読み取り可能な名前でイベントを検索し、各イベントに関する情報を返すことが可能です。

イベントを返す

エンドポイント
GET https://automate.adjust.com/reports-service/events

イベントオブジェクトのリストを返します。

パラメーター

レスポンスパラメーター

セクション

レスポンスの形式
[
{
"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"]
}
]