Fetching a eVar value against another eVar through Analytics API | Community
Skip to main content
August 23, 2018
Solved

Fetching a eVar value against another eVar through Analytics API

  • August 23, 2018
  • 4 replies
  • 3734 views

Hi all,

I need to fetch an eVar value against another eVar through Analytics API on postman. I am passing these eVars in the same request in Analytics call.

Is there any API request to achieve this kind of requirement?

Thanks in advance.

Richa

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Hyder_Ziaee

Hi Richa,

Here is an example that you can use for you request:

{

  "reportDescription": {

    "reportSuiteID": "rsid",

    "dateFrom": "2018-08-22",

    "dateTo": "2018-08-22",

    "breakdownType": "subrelation",

    "sortBy": "visits",

    "elements": [

      {

        "id": "evar1",

        "top": 10,

        "startingWith": 1

      },

      {

        "id": "evar2",

        "top": 10,

        "startingWith": 1

      }

    ],

    "metrics": [

      {

        "id": "visits"

      }

    ]

  }

}

4 replies

Hyder_Ziaee
Adobe Employee
Hyder_ZiaeeAdobe EmployeeAccepted solution
Adobe Employee
August 23, 2018

Hi Richa,

Here is an example that you can use for you request:

{

  "reportDescription": {

    "reportSuiteID": "rsid",

    "dateFrom": "2018-08-22",

    "dateTo": "2018-08-22",

    "breakdownType": "subrelation",

    "sortBy": "visits",

    "elements": [

      {

        "id": "evar1",

        "top": 10,

        "startingWith": 1

      },

      {

        "id": "evar2",

        "top": 10,

        "startingWith": 1

      }

    ],

    "metrics": [

      {

        "id": "visits"

      }

    ]

  }

}

August 23, 2018

Thanks for the quick response. Can this be real time?

Actually we are passing customerid in one evar(eVar1) and mid in another evar(eVar2). We want to fetch eVar2 value against eVar1 by passing eVar1 in request.

We will then use the fetched mid value in subsequent target API calls.

If there are any links or code to fulfill this request. It will be really helpful.

Hyder_Ziaee
Adobe Employee
Adobe Employee
August 24, 2018

Don't think this is allowed in real time API requests. I have not played around with this. However, if you can setup the real time report in UI, you should be able to get the data through API

Urs_Boller
Community Advisor
Community Advisor
August 27, 2018

you could use processing rules to populate another evar with combined values of the desired single evars (eg. [mid]|[customerid]) now use reporting to get realtime data of this combined evar value.

remark: I don't know if processing rules are before or after realtime data ...