ML Prep API (v1)
Download OpenAPI description
Languages
Servers
Mock server
http://{{your_prep_ip_address}}/
- Mock server
http://{{your_prep_ip_address}}/api/v1/protocol-run/submit-normalization-file
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'http://{{your_prep_ip_address}}/api/v1/protocol-run/submit-normalization-file' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"protocolId": 0,
"stepId": 0,
"fileName": "string",
"filePath": "string",
"fileContents": "string"
}'- Mock server
http://{{your_prep_ip_address}}/api/v1/protocol-run/rtsa
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'http://{{your_prep_ip_address}}/api/v1/protocol-run/rtsa' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '{
"stepId": 0,
"targets": [
{
"position": 0,
"addresses": [
{
"row": 1,
"column": 1
}
]
}
]
}'- Mock server
http://{{your_prep_ip_address}}/api/v1/protocol-run/simulation-speed
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://{{your_prep_ip_address}}/api/v1/protocol-run/simulation-speed' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "simulationSpeed": "string" }