Get form element values

Get form element values

Retrieves a paged list of permissible values that can be assigned to a specific field

Request
URI
POST
https://{api_host}/advanced-designer-service/api/forms/{formId}/{bindingId}/{elementId}/values
COPY
Path Parameters
string
formId
Required

form identifier

string
bindingId
Required

binding identifier

string
elementId
Required

An identifier of the element within the form


Request Body

Specifies information required to complete the request

elementValuesRequest of type(s) application/json
Required
"elementValuesRequest Object"
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

successful operation

Returns elementValues of type(s) */*
{
    "values": [
        {
            "label": "string",
            "underlyingValue": {}
        }
    ]
}
array of object
values
Optional

values


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '[{}]' https://{api_host}/advanced-designer-service/api/forms/{formId}/{bindingId}/{elementId}/values