All REST Endpoints

I Get Version Metadata
Get metadata about the API versions.
Retrieve metadata of available versions
Method: get
Path: /api/py-scripts
Retrieve metadata of version 1
Method: get
Path: /api/py-scripts/v1
II List Scripts
List scripts available in the OML4Py script repository.
List Scripts
Method: get
Path: /api/py-scripts/v1/scripts
III List Environments
List OML4Py environments available in the Object Storage.
List OML4Py conda environments
Method: get
Path: /api/py-scripts/v1/envs
IV Run Scripts
Run scripts from the OML4Py script repository.
Retrieve Asynchronous Job Result
Method: get
Path: /api/py-scripts/v1/jobs/{jobId}/result
Retrieve Asynchronous Job Status
Method: get
Path: /api/py-scripts/v1/jobs/{jobId}
Run a Python Function
Method: post
Path: /api/py-scripts/v1/do-eval/{scriptName}
Run a Python Function multiple times
Method: post
Path: /api/py-scripts/v1/index-apply/{scriptName}
Run a Python Function multiple times with Script Owner Specified
Method: post
Path: /api/py-scripts/v1/index-apply/{scriptName}/{ownerName}
Run a Python Function on Chunks of Rows
Method: post
Path: /api/py-scripts/v1/row-apply/{scriptName}
Run a Python Function on Chunks of Rows with Script Owner Specified
Method: post
Path: /api/py-scripts/v1/row-apply/{scriptName}/{ownerName}
Run a Python Function on Grouped Data
Method: post
Path: /api/py-scripts/v1/group-apply/{scriptName}
Run a Python Function on Grouped Data with Script Owner Specified
Method: post
Path: /api/py-scripts/v1/group-apply/{scriptName}/{ownerName}
Run a Python Function on Specified Data
Method: post
Path: /api/py-scripts/v1/table-apply/{scriptName}
Run a Python Function on Specified Data with Script Owner Specified
Method: post
Path: /api/py-scripts/v1/table-apply/{scriptName}/{ownerName}
Run a Python Function with Script Owner Specified
Method: post
Path: /api/py-scripts/v1/do-eval/{scriptName}/{ownerName}