Get a BML Lookup

get

/rest/v19/bml/lookups/{lookupType}

This operation returns the specified lookup type.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

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

Examples

The following example shows how to retrieve the specified BML 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/lookups/functionCategory

Response Body Sample

{
  "lookupType": "functionCategory",
  "displayLabel": "Function Category",
  "description": "BML Function Categories",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionCategory"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups"
    }, {
      "rel": "child",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionCategory/lookupValues"
    }
  ]
}
Back to Top