How to get the value of events from API 2.0?
Hi Everyone, I am trying to extract data from the API to store it in a DB
But I am having trouble to find out how to get the value of the events filter by date, I am using Swagger and for example I can get a list of all Events using the next endpoint: https://analytics.adobe.io/api/[client id]/metrics?rsid=[report suite id]
but this only shows the name of the event and the description, but not the actual value
Then I tryed using the endpoint of a specific event with https://analytics.adobe.io/api/[client id]/metrics/event01?rsid=[report suite id]
but it also only showed this:
{
"id": "metrics/event01",
"title": "String",
"name": "String",
"type": "int",
"extraTitleInfo": "event01",
"category": "Conversion",
"support": ["String"],
"allocation": true,
"precision": 0,
"calculated": false,
"segmentable": true,
"supportsDataGovernance": true,
"description": "String",
"polarity": "positive"
}
How can I get the actual value for the events and filter for date?
Thanks in advance!