Retrieve evaluation
Retrieve the active evaluation with a given ID.
URL: /evaluations/{id}
Method: GET
Success Responses
Code : 200 OK
Content: evaluation
defined as:
{
"id": "string",
"expression": "string",
"state": "string"
}
Where
state
is any of these:pending
,evaluating
,paused
,failed
,cancelled
orfinished
.
Example:: GET /evaluations/1
{
"id": "1",
"expression": "1000000 factorial",
"state": "pending"
}
Last updated