Run an R Function with Script Owner Specified

post

/api/r-scripts/v1/do-eval/{scriptName}/{ownerName}

Runs the R function with script owner specified.

Request

Supported Media Types
Path Parameters
Body ()
A JSON str of (name - value) pairs specifying arguments of the request and additional arguments to the script
Root Schema : EmbedScriptCompute
Type: object
Show Source
  • Whether to execute the job asynchronously.
  • Name of the conda environment.
  • Whether to capture images rendered in the script to the result.
  • A JSON str of (name - value) pairs specifying keyword arguments to be passed into the script.
  • Allowed Values: [ "LOW", "MEDIUM", "HIGH" ]
    LEVEL of the service. Default is LOW.
  • Minimum Value: 1800
    Maximum Value: 43200
    The timeout limit (in seconds, default 1800s) of asynchronous job. Must be used together with `asyncFlag`=true.
Example Request (application/json)
{"parameters":"{\"ds_name\":\"ds_rdata\"}", "asyncFlag":false, "service":"LOW"}
Back to Top

Response

Supported Media Types

200 Response

By default, returns the job result.
Body ()
Root Schema : JSONObject
Type: object
Show Source

201 Response

If asyncFlag=True, returns the location header where the status of the job can be fetched.
Headers

400 Response

Invalid parameters specified, output exceeding size limit or other script execution error.
Body ()
Root Schema : InvalidParameterValueException
Type: object
Show Source

500 Response

Problem connecting to Broker, executing job or other unexpected error.
Body ()
Root Schema : ComputeContainerException
Type: object
Show Source
Back to Top

Examples

The following example runs the script named RandomRedDots and specifies the script owner.

curl -i -X POST --header "Authorization: Bearer ${token}" \
--header 'Content-Type: application/json' --header 'Accept: application/json' \
-d '{"graphicsFlag":true, "service":"LOW"}' \
"<oml-cloud-service-location-url>/oml/api/r-scripts/v1/do-eval/RandomRedDots/<owner_name>"

Response Headers

The response headers are the following:

HTTP/1.1 200 OK
Date: Thu, 28 Jul 2022 21:04:18 GMT
Content-Type: application/json
Content-Length: 1820
Connection: keep-alive
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1;mode=block
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Content-Type-Options: nosniff
Content-Security-Policy: frame-ancestors 'none'

Response Body

The response body in JSON format is the following:


{"result":[{"IMAGE":"iVBORw0KGgoAAAANSUhEUg......Fug8AAAAASUVORK5CYII=","DATA":[{
"val":0.01,"id":1},{"val":0.02,"id":2},{"val":0.03,"id":3},{"val":0.04,"id":4
},{"val":0.05,"id":5},{"val":0.06,"id":6},{"val":0.07,"id":7},{"val":0.08,"id
":8},{"val":0.09,"id":9},{"val":0.1,"id":10}],"ID":1}]}
Back to Top