Get Util Library Folders

get

/rest/v19/bml/library/folders

This operation retrieves all the available Util Library folders.

Request

Supported Media Types
Body ()
Util Libraries list.
Root Schema : libraries-request
Type: object
Show Source
Nested Schema : The library functions list
Type: array
Title: The library functions list
List of library functions.
Show Source
Nested Schema : libraryFunctions
Type: object
Show Source
Back to Top

Response

Supported Media Types

Default Response

Util Library folders.
Body ()
Root Schema : utilFolders
Type: object
Show Source
Nested Schema : List of util folders.
Type: array
Title: List of util folders.
List of util folders.
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve all the available Util Library folders 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/library/folders

Response Body Sample

{
  "items": [{
      "name": "util",
      "links": [{
          "rel": "related",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/library/functions?q=%7B%22namespace%22%3Anull%7D"
        }
      ]
    }, {
      "name": "nameSpace11",
      "links": [{
          "rel": "related",
          "href": "https://sitename.oracle.com/cpq/rest/v19/bml/library/functions?q=%7B%22namespace%22%3A%22nameSpace11%22%7D"
        }
      ]
    }
  ],
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/library/folders"
    }
  ]
}
Back to Top