Getting the List of Data Providers

Gets the list of data providers of a Web Intelligence document.

Request

GET <webiURL>/documents/{documentId}/dataproviders

Response

Response type: application/xml or application/json

Response body: the list of <dataprovider> elements with the following information:

  • <id>
  • <name>
  • <updated> is the date of the last update

Example

GET <webiURL>/documents/7738/dataproviders

<dataproviders>
    <dataprovider>
        <id>DP0</id>
        <name>Query 1</name>
        <updated>2006-09-20Z</updated>
    </dataprovider>
    <dataprovider>
    ...
    </dataprovider>
</dataproviders>