Get All BML Attribute Lookups

get

/rest/v19/bml/attributeLookups

This operation returns BML attribute lookup types.

Request

Query Parameters
Back to Top

Response

Supported Media Types

Default Response

All BML Attribute Lookup Functions
Body ()
Root Schema : Lookup Functions
Type: object
Title: Lookup Functions
Lookup functions.
Show Source
Nested Schema : Lookups list
Type: array
Title: Lookups list
List of Lookups Functions
Show Source
Nested Schema : lookupFunction
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve all BML attribute lookup types 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

Response Body Sample

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