Export Util Library Functions

post

/rest/v19/bml/library/functions/actions/export

This operation exports the specified Util Library functions.

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

Export task info.
Body ()
Root Schema : exportUtil-response
Type: object
Show Source
Back to Top

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"
    }
  ]
}
Back to Top