Export Util Library Functions
post
/rest/v19/bml/library/functions/actions/export
This operation exports the specified Util Library functions.
Request
Supported Media Types
- application/json
Util Libraries list.
Root Schema : libraries-request
Type:
Show Source
object
-
items:
array The library functions list
Title:
The library functions list
List of library functions.
Nested Schema : The library functions list
Type:
array
Title:
The library functions list
List of library functions.
Show Source
Nested Schema : libraryFunctions
Type:
Show Source
object
-
namespace:
string
Title:
namespace
Util library floder name. -
type:
string
Title:
type
Library function type either util or commerce. -
variableName:
string
Title:
variableName
variableName of the libaray function.
Response
Supported Media Types
- application/json
Default Response
Export task info.
Root Schema : exportUtil-response
Type:
Show Source
object
-
links:
array Links to the related objects
Title:
Links to the related objects
Links to the related objects -
taskId:
number
Title:
taskId
Id of the export task.
Nested Schema : Links to the related objects
Type:
array
Title:
Links to the related objects
Links 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:
object
Reference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
URL to the related object
URL to the related object -
rel:
string
Title:
Link Relationship to the current object
Link Relationship to the current object
Examples
The following example shows how to export the specified Util Library functions by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl -X POST -H "Authorization: Bearer <token>" -H "Content-type: application/json" -H "Accept: application/json" https://sitename.oracle.com/rest/v19/bml/library/functions/actions/export
Request Body Sample
{ "items": [{ "variableName": "concatString" }, { "variableName": "concatString", "namespace": "nameSpace11" } ] }
Response Body Sample
{ "taskId": 3024451712, "links": [{ "rel": "related", "href": "https://sitename.oracle.com/cpq/rest/v19/tasks/3024451712" } ] }