Get a BML Attribute Lookup

get

/rest/v19/bml/attributeLookups/{lookupType}

This operation returns the specified attribute lookup type.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

BML Attribute Lookup Function
Body ()
Root Schema : lookupFunction
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve the specified BML attribute lookup type by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET  -H "Authorization: Bearer <token>" -H "Content-type: application/json" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/bml/attributeLookups/commonVariables

Response Body Sample

{
  "lookupType": "commonVariables",
  "displayLabel": "Common Variables",
  "description": "Common Variables",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/attributeLookups/commonVariables"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/attributeLookups"
    }, {
      "rel": "child",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/attributeLookups/commonVariables/lookupValues"
    }
  ]
}
Back to Top