Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Fetching a eVar value against another eVar through Analytics API

Avatar

Level 2

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

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

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"

      }

    ]

  }

}

View solution in original post

4 Replies

Avatar

Correct answer by
Employee Advisor

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"

      }

    ]

  }

}

Avatar

Level 2

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.

Avatar

Employee Advisor

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

Avatar

Community Advisor

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 ...