Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

Adobe dimensions: get the list of any delta changes to custom variables (evars, props) and event definitions

Avatar

Level 2

I am trying to get the list of the Adobe dimensions using the Adobe 2.0 dimensions API. Is it possible to get the delta(historic) processing of the dimension? Currently, we are not receiving the start date or end date of the dimension form the API.
For Ex:
on 04/27/2020 For evar10
{
"id": "variables/evar10",
"title": "ClientCode(10)",
"name": "ClientCode(10)",
"type": "string",
"category": "Conversion",
"support": [
"oberon",
"dataWarehouse"
],
"pathable": false,
"extraTitleInfo": "evar10",
"segmentable": true,
"reportable": [
"oberon"
],
"supportsDataGovernance": true,
"tags": []
}

on 04/26/2020 For evar10
{
"id": "variables/evar10",
"title": "clientId (10)",
"name": "clientId (10)",
"type": "string",
"category": "Conversion",
"support": [
"oberon",
"dataWarehouse"
],
"pathable": false,
"extraTitleInfo": "evar10",
"segmentable": true,
"reportable": [
"oberon"
],
"supportsDataGovernance": true,
"tags": []
}
Is any where to get the list of any delta changes to custom variables (evars, props) and event definitions

1 Accepted Solution

Avatar

Correct answer by
Level 10

Could you elaborate what you mean by the delta?

View solution in original post

6 Replies

Avatar

Correct answer by
Level 10

Could you elaborate what you mean by the delta?

Avatar

Level 2
Here delta means the title or name of the evar,prop and event change.

Avatar

Level 10
I think you may need to use another API method to pull report suite logs rather than the configuration. Then by parsing the log, it will be possible to find all changes happened with a certain variable.

Avatar

Level 2

Here delta means the title or name of the evar,prop and event change.

For ex:
on 04/27/2020 For evar10
{
"id": "variables/evar10",
"title": "ClientCode(10)",
"name": "ClientCode(10)",
"type": "string",
"category": "Conversion",
"support": [
"oberon",
"dataWarehouse"
],
"pathable": false,
....
}

on 04/20/2020 For evar10
{
"id": "variables/evar10",
"title": "clientId (10)",
"name": "clientId (10)",
"type": "string",
"category": "Conversion",
"support": [
"oberon",
"dataWarehouse"
],
....
}

Above example title is on 04/27 and 04/26 are diffrent.
Is any where to get the list of any delta changes to custom variables (evars, props) and event definitions through API or configuration

Avatar

Level 10
Do any of the answers below answer your initial question? If so, can you select one of them as the correct answer? If none of the answers already provided answer your question, can you provide additional information to better help the community solve your question?