adjust-icon

Events endpoint

Use the Events endpoint to retrieve event slugs to use in your report service queries. The endpoint enables you to search for events using their readable names and returns useful information about each one.

Return events

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

Return a list of event objects.

Parameters

Response parameters

Sections

Response format
[
{
"id": "string",
"name": "string",
"short_name": "",
"section": "",
"formatting": "money",
"increase_is_negative": false,
"description": "",
"app_token": ["string"],
"tokens": ["string"]
}
]

Responses

This endpoint returns the following responses:

Example

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