latestOpenAPI 3.0.32026-08-201592,4923.4 MB

53223abaceb7

Simulation Runs

List simulation runs for a simulation

get/projects/{projectId}/simulations/{simulationId}/runs

Query parameters

limitinteger

The number of items to return.

pageinteger

The page number. Use in combination with limit.

Response

Successful operation

Example response

{
  "_links": {
    "first": {
      "href": "/projects?page={firstPage}&limit={limit}"
    },
    "prev": {
      "href": "/projects?page={previousPage}&limit={limit}"
    },
    "self": {
      "href": "/projects?page={currentPage}&limit={limit}"
    },
    "next": {
      "href": "/projects?page={nextPage}&limit={limit}"
    },
    "last": {
      "href": "/projects?page={lastPage}&limit={limit}"
    }
  },
  "_embedded": [
    {
      "runId": "37ae37ae-37ae-37ae-37ae-37ae37ae37ae",
      "name": "My first simulation run",
      "createdAt": "2020-03-04T15:16:17Z",
      "startedAt": "2020-03-04T15:17:18Z",
      "finishedAt": "2020-03-04T17:29:42Z",
      "duration": "PT2H12M14S",
      "computeResource": {
        "type": "GPU_HOURS",
        "value": 0.27
      },
      "status": "FINISHED",
      "progress": 1,
      "isContinuable": false
    }
  ]
}