EPOS Tester (1.0.0)
Download OpenAPI specification:Download
Request samples
- Python + Python3
- Node + Request
- Shell + Curl
- Php + Curl
- Csharp + Restsharp
- Python + Requests
- Javascript + Jquery
- Javascript + Xhr
- Swift + Nsurlsession
- Ruby + Native
- Go + Native
- C + Libcurl
- Powershell + Webrequest
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
- 200
Content type
application/json
{- "name": "string",
- "params": [
- {
- "name": "string",
- "type": "string",
- "required": true,
- "description": "string",
- "default": "string"
}
]
}
/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
- Payload
- Python + Python3
- Node + Request
- Shell + Curl
- Php + Curl
- Csharp + Restsharp
- Python + Requests
- Javascript + Jquery
- Javascript + Xhr
- Swift + Nsurlsession
- Ruby + Native
- Go + Native
- C + Libcurl
- Powershell + Webrequest
Content type
application/json
{- "flow": "string"
}
Response samples
- 200
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
- Python + Python3
- Node + Request
- Shell + Curl
- Php + Curl
- Csharp + Restsharp
- Python + Requests
- Javascript + Jquery
- Javascript + Xhr
- Swift + Nsurlsession
- Ruby + Native
- Go + Native
- C + Libcurl
- Powershell + Webrequest
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
- 200
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": [
- {
- "name": "string",
- "status": "SUCCESS",
- "additionalInformation": [
- "string"
], - "startedAt": "2024-03-30T12:00:00Z",
- "finishedAt": "2024-03-30T12:00:00Z"
}
]
}