Question
Segmentation reference in Adobe Analytics API 2.0
Hello Community,
Good Day!
I stumbled upon an Adobe Analytics API 1.4 documentation
URL: https://developer.adobe.com/analytics-apis/docs/1.4/guides/reporting/report-description/segments/
In the document, We can do something like search a specific value/s based on evar element. Sample below
"segments": [
{
"element": "eVar1",
"classification": "Group Name",
"search": { "type": "OR", "keywords": ["Administrator", "Manager", "Director"] }
}
]
I want to ask, is there an equivalent of the above in Adobe Analytics API 2.0?
As I'm checking, we need the segmentId inside the globalFilter like below
"globalFilters":[
{
{
"type":"segment",
"segmentId":"53adb46be4b0a2a175bf38c4"
}
}
]
We need to add the specific evar value/s on the Reports API request same as the version v1.4 as we do not know the segmentIds of the segments.
Appreciate the help. Thank you!