Skip to main content
GET
/
api
/
v1
/
flows
cURL
curl --request GET \
  --url http://localhost:52000/api/v1/flows
{
  "content": [
    {
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "id": 123,
      "name": "<string>",
      "description": "<string>",
      "projectId": 123,
      "type": "<string>",
      "steps": [
        {
          "id": "<string>",
          "type": "<string>",
          "endpointId": 123,
          "preProcessor": "<string>",
          "postProcessor": "<string>",
          "nextIfTrue": "<string>",
          "nextIfFalse": "<string>",
          "condition": "<string>"
        }
      ]
    }
  ],
  "page": {
    "size": 123,
    "number": 123,
    "totalElements": 123,
    "totalPages": 123
  }
}

Query Parameters

projectId
integer<int64>
name
string
page
integer
default:0

Zero-based page index (0..N)

Required range: x >= 0
size
integer
default:20

The size of the page to be returned

Required range: x >= 1
sort
string[]

Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.

Response

200 - */*

OK

content
object[]
page
object