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/verification/workflow/routine-run/{index}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://{{your_prep_ip_address}}/api/v1/verification/workflow/routine-run/{index}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- Mock server
http://{{your_prep_ip_address}}/api/v1/verification/service-routines/{serviceRoutineId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'http://{{your_prep_ip_address}}/api/v1/verification/service-routines/{serviceRoutineId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- Mock server
http://{{your_prep_ip_address}}/api/v1/verification/routines
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'http://{{your_prep_ip_address}}/api/v1/verification/routines' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'The list of verification routines
A number signifying the order to run verification routine with respect to other verifications
A list of runs for the verification routine on the current instrument, ordered by most recent
A boolean signifying that the HEPAUV device must be present to run this verification routine
List of required verification devices
Response
application/json
[ { "id": 0, "name": "string", "verificationOrder": 0, "dueDate": "2019-08-24T14:15:22Z", "runs": [ … ], "requiredThermalDevice": "Hhs", "requiresHepaUv": true, "verificationDevices": [ … ], "serviceRoutine": { … } } ]