Get All BML Lookups
get
                    /rest/v19/bml/lookups
This operation returns all BML lookup types.
                
                Request
Query Parameters
                - 
                        excludeLinks: string
                        
                        Exclude specified link types.
Response
Supported Media Types
                - application/json
Default Response
All BML Lookup Functions
                
                
                    Root Schema : Lookup Functions
    
      Type: 
      
    
    
    
    objectTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Lookup FunctionsLookup functions.
    
    
    
    
    Show Source
        - 
            items: 
            array  Lookups list
            
            Title:Lookups listList of Lookups Functions
- 
            links: 
            array  Links to the related objects
            
            Title:Links to the related objectsLinks to the related objects
Nested Schema : Links to the related objects
    
      
      Type: 
    
    
    
    arrayTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Links to the related objectsLinks to the related objects
    
    
    
    
    
        Show Source
        - 
            Array of: 
                object  referenceLinks
            
            Reference links for the Parent, Self, Children and Related as applicable
Nested Schema : lookupFunction
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Show Source
        object- 
            description: 
            string
            Title:descriptionDescription of the lookup.
- 
            displayLabel: 
            string
            Title:displayLabelName of the lookup.
- 
            links: 
            array  Links to the related objects
            
            Title:Links to the related objectsLinks to the related objects
- 
            lookupType: 
            string
            Title:lookupTypeType of the lookup.
Nested Schema : Links to the related objects
    
      
      Type: 
    
    
    
    arrayTitle: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Links to the related objectsLinks to the related objects
    
    
    
    
    
        Show Source
        - 
            Array of: 
                object  referenceLinks
            
            Reference links for the Parent, Self, Children and Related as applicable
Nested Schema : referenceLinks
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectReference links for the Parent, Self, Children and Related as applicable
    
    
    
    
    Show Source
        - 
            href: 
            string
            Title:URL to the related objectURL to the related object
- 
            rel: 
            string
            Title:Link Relationship to the current objectLink Relationship to the current object
Examples
The following example shows how to retrieve all BML 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/lookups
Response Body Sample
{
  "items": [{
      "lookupType": "functionCategory",
      "displayLabel": "Function Category",
      "description": "BML Function Categories",
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionCategory"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionCategory/lookupValues"
        }
      ]
    }, {
      "lookupType": "functionParamDataTypes",
      "displayLabel": "Function Param Data Types",
      "description": "BML Function Parameter types",
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionParamDataTypes"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionParamDataTypes/lookupValues"
        }
      ]
    }, {
      "lookupType": "functionReturnTypes",
      "displayLabel": "Function Return Type",
      "description": "BML function return types",
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionReturnTypes"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/functionReturnTypes/lookupValues"
        }
      ]
    }, {
      "lookupType": "operators",
      "displayLabel": "Operators",
      "description": "BML Operators",
      "links": [{
          "rel": "self",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/operators"
        }, {
          "rel": "child",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups/operators/lookupValues"
        }
      ]
    }
  ],
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/lookups"
    }
  ]
}