REST API Full URL (255) | Community
Skip to main content
November 21, 2017
Solved

REST API Full URL (255)

  • November 21, 2017
  • 1 reply
  • 1637 views

Hi All,

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

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 jhammons-1

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"

  }

}

1 reply

jhammons-1Adobe EmployeeAccepted solution
Adobe Employee
November 22, 2017

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"

  }

}