Get the Possible Values for A Form Field Of A Component In A Requested Blueprint

Get the Possible Values for A Form Field Of A Component In A Requested Blueprint

Get the possible values for a specific field in the request form of a component in a blueprint, given a catalog request id.

Request
URI
POST
https://{api_host}/composition-service/api/requests/catalog/{cafeRequestId}/hierarchy/{fieldPath}/form/{formType}/{formElementId}/values
COPY
Path Parameters
string
cafeRequestId
Required

The id of the catalog request.

string
fieldPath
Required

The path of the component whose form the field belongs to.

string
formType
Required

The type of the request form.

Possible values are : composition.request.submission, composition.request.details,
string
formElementId
Required

The ID of the form field whose values are requested.


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

pagingInfo

headers
Optional

headers

string
tenantId
Optional

tenantId

string
text
Optional

text

string
userId
Optional

userId

dependencyValues
Optional

dependencyValues

associateValue
Optional

associateValue

Responses
200

Success - return an ElementValuesResponse containing a list of possible values.

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

values