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
stateis any of these:pending,evaluating,paused,failed,cancelledorfinished.
Example:: GET /evaluations/1
{
"id": "1",
"expression": "1000000 factorial",
"state": "pending"
}Last updated