Executions

GEThttps://api.laminar.run/workflow/{id}/executions
Path parameters
id*integer (int64)
Response

OK

Body
idinteger (int64)
status*enum
SUCCESSFAILEDUNKNOWNRUNNING
startedAtstring (date-time)
completedAtstring (date-time)
Request
const response = await fetch('https://api.laminar.run/workflow/{id}/executions', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "status": "SUCCESS",
    "startedAt": "2024-10-21T21:14:08.620Z",
    "completedAt": "2024-10-21T21:14:08.620Z"
  }
]