Get a BML Common Function

get

/rest/v19/bml/common/functions/{name}

This operation returns the specified common library function. BML common functions are the functions used within BML such as atoi() or len().

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

Default Response

BML Common Function
Body ()
Root Schema : bmlCommonFunction
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve the specified BML common function 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/common/functions/atof

Response Body Sample

{
  "name": "atof",
  "category": "STRING",
  "description": "Converts text that represents a number into a float number",
  "syntax": "Float atof(String str)",
  "example": "1. atof(\"\") throws an exception.",
  "shortSyntax": "atof(str)",
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/cpq/rest/v19/bml/common/functions/atof"
    }
  ]
}
Back to Top