Skip to main content

EPOS Tester (1.0.0)

Download OpenAPI specification:Download

Flows

/flows

Responses

Response Schema: application/json
name
required
string
Array of objects

Request samples

import http.client

conn = http.client.HTTPConnection("undefinedundefined")

conn.request("GET", "/flows")

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))

Response samples

Content type
application/json
{
  • "name": "string",
  • "params": [
    ]
}

/flows

Request Body schema: application/json
flow
required
string

the name of the flow as returned by the /flows endpoint

params
object

Responses

Response Schema: application/json
string <uuid> ^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a...

UUID uniquely identifying a flow

Request samples

Content type
application/json
{
  • "flow": "string"
}

Response samples

Content type
application/json
"497f6eca-6276-4993-bfeb-53cbbbba6f08"

/flows/{flowId}

path Parameters
flowId
required
string <uuid> ^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a...

UUID uniquely identifying a flow

Responses

Response Schema: application/json
flowID
required
string <uuid> ^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a...

UUID uniquely identifying a flow

flowName
required
string
status
required
string
Enum: "SUCCESS" "FAILURE" "TIMED_OUT" "IN_PROGRESS"
startedAt
required
string <date-time>
finishedAt
string <date-time>
Array of objects

Request samples

import http.client

conn = http.client.HTTPConnection("undefinedundefined")

conn.request("GET", "/flows/%7BflowId%7D")

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))

Response samples

Content type
application/json
{
  • "flowID": "ccb283f7-054e-4ee5-bbdd-f27c7eb83478",
  • "flowName": "string",
  • "status": "SUCCESS",
  • "startedAt": "2024-03-30T12:00:00Z",
  • "finishedAt": "2024-03-30T12:00:00Z",
  • "steps": [
    ]
}