Getting the List of Values of a Data Object

Usage

Returns the list of values of a data object of a Web Intelligence document.

A data object is a data provider expression, a variable, or a linked dimension.

Request

GET /documents/<documentID>/dataobjects/<dataObjectID>/lov

Response

Response type: application/xml or application/json

Example

XML

GET /documents/6071/dataobjects/DP0.DO84/lov

Response:

<lov mandatorySearch="false" searchable="false" refreshable="false" partial="false" hierarchical="false">
    <values>
        <value>Germany</value>
        <value>Japan</value>
        <value>Madagascar</value>
        <value>Middle East</value>
        <value>Nepal</value>
        <value>South Africa</value>
        <value>US</value>
    </values>
    <columns mappingId="0">
        <column type="String" id="0">Country</column>
    </columns>
</lov>

Example

JSON

GET /documents/5152/dataobjects/DP0.DO1fc/lov

Response:

{"lov":{
    "@mandatorySearch":"false",
    "@searchable":"true",
    "@refreshable":"false",
    "@partial":"false",
    "@hierarchical":"false",
    "values":{
        "value":[
            "2 Pocket shirts",
            "Belts,bags,wallets",
            "Bermudas",
            "Boatwear",
            "Cardigan",
            "Casual dresses",
            "Day wear",
            "Dry wear",
            "Evening wear",
            "Fancy fabric",
            "Full length",
            "Hair accessories",
            "Hats,gloves,scarves",
            "Jackets",
            "Jeans",
            "Jewelry",
            "Long lounge pants",
            "Long sleeve",
            "Lounge wear",
            "Mini city",
            "Night wear",
            "Outdoor",
            "Pants",
            "Party pants",
            "Samples",
            "Shirts",
            "Short sleeve",
            "Skirts",
            "Soft fabric",
            "Sweater dresses",
            "Sweats",
            "T-Shirts",
            "Turtleneck",
            "Wet wear"
        ]
    },
    "columns":{
        "@mappingId":"0",
        "column":{
            "@type":"String",
            "@id":"0",
            "$":"Category"}
       }
   }
}