Delete Util Library Functions
post
/rest/v19/bml/library/functions/actions/delete
This operation deletes a single or multiple 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 listList of library functions.
Nested Schema : The library functions list
Type:
arrayTitle:
The library functions listList of library functions.
Show Source
Nested Schema : libraryFunctions
Type:
Show Source
object-
namespace:
string
Title:
namespaceUtil library floder name. -
type:
string
Title:
typeLibrary function type either util or commerce. -
variableName:
string
Title:
variableNamevariableName of the libaray function.
Response
Supported Media Types
- application/json
Default Response
No Content
Examples
The following example shows how to delete a specified Util Library function 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/delete
Request Body Sample
{
"items": [
{
"variableName": "concatString"
},
{
"variableName": "concatString",
"namespace": "nameSpace11"
}
]
}