Get permissible values for A Property Definition

Get permissible values for A Property Definition

Retrieve the permissible values for a Property Definition with display advice of Dropdown. When the dropdown is backed by a vRO Script Action, the body must contain values for any parameters bound to other properties.

Request
URI
POST
https://{api_host}/properties-service/api/propertydefinitions/{id}/values
COPY
Path Parameters
string
id
Required

The id of the Property Definition


Request Body

The values of any bound properties

elementValuesRequest of type(s) application/json
Required
{
    "pagingInfo": {
        "offset": 0,
        "count": 0
    },
    "headers": {
        "entries": [
            {
                "value": {},
                "key": "string"
            }
        ]
    },
    "tenantId": "string",
    "text": "string",
    "userId": "string",
    "dependencyValues": {
        "entries": [
            {
                "value": {},
                "key": "string"
            }
        ]
    },
    "associateValue": {}
}
object
pagingInfo
Optional

pagingInfo

object
headers
Optional

Equivalent of java.util.Map

string
tenantId
Optional

tenantId

string
text
Optional

text

string
userId
Optional

userId

object
dependencyValues
Optional

Equivalent of java.util.Map

object
associateValue
Optional

Wraps a value such that values of different types can be treated generically.

Responses
200
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/properties-service/api/propertydefinitions/{id}/values