Expand my Community achievements bar.

SOLVED

REST API Full URL (255)

Avatar

Level 1

Hi All,

How to create an REST query that will give me from the Raport Suites list of all URLs like in the SiteCatalyst ?

1 Accepted Solution

Avatar

Correct answer by
Employee

The REST API documentation is at Home | Adobe Developer Connection​. When you are ready to request the report, one thing to keep in mind is that the pageurl is a data warehouse dimension, so be sure to add "source":"warehouse" to the request:

{

  "reportDescription":{

    "reportSuiteID":"INSERT-RSID-HERE",

    "dateFrom":"2017-11-01",

    "dateTo":"2017-11-07",

    "elements":[

      {

        "id":"pageurl"

      }

    ],

    "source":"warehouse"

  }

}

View solution in original post

1 Reply

Avatar

Correct answer by
Employee

The REST API documentation is at Home | Adobe Developer Connection​. When you are ready to request the report, one thing to keep in mind is that the pageurl is a data warehouse dimension, so be sure to add "source":"warehouse" to the request:

{

  "reportDescription":{

    "reportSuiteID":"INSERT-RSID-HERE",

    "dateFrom":"2017-11-01",

    "dateTo":"2017-11-07",

    "elements":[

      {

        "id":"pageurl"

      }

    ],

    "source":"warehouse"

  }

}