Find Workflows
This endpoint allows you to find all workflows.
Endpoint: /api/v1/workflows
Method: GET
Query parameters
Responses
200 (OK) The request was successful, and the server has returned a list of workflows.
Body:
{
"message": "string",
"timestamp": "2024-03-29T11:48:30.540Z",
"data": [
{
"id": "string",
"name": "string",
"steps": [
{
"delegate": "enum",
"timeOutInSeconds": 0,
"params": {
"additionalProp1": {
"strValue": "string",
"longValue": "number",
"doubleValue": "number",
"type": "enum"
},
"additionalProp2": {
"strValue": "string",
"longValue": "number",
"doubleValue": "number",
"type": "enum"
},
"additionalProp3": {
"strValue": "string",
"longValue": "number",
"doubleValue": "number",
"type": "enum"
}
}
}
]
}
],
"version": "string"
}
401 (Unauthorized) This response is returned if the request is not authorized.
Body:
{
"message": "Unauthorized request",
"timestamp": "2023-09-28T15:37:14.222Z",
"data": "string",
"version": "string"
}
500 (Internal Server Error) This response is returned if an unexpected internal server error occurs.
Body:
{
"message": "Internal Server Error",
"timestamp": "2023-09-28T15:37:14.223Z",
"data": "string",
"version": "string"
}