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"]
}
]