Flows

GEThttps://api.laminar.run/workspaces/{workspaceId}/flows
Path parameters
workspaceId*integer (int64)
Response

OK

Body
idinteger (int64)
name*string
description*string
currentFlowVersionFlowVersion (object)
executionOrder*integer (int32)
createdAtstring (date-time)
sourceApiDescription (object)
destinationApiDescription (object)
Request
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/flows', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "name": "text",
    "description": "text",
    "currentFlowVersion": {
      "createdAt": "2024-11-21T06:57:47.826Z"
    },
    "createdAt": "2024-11-21T06:57:47.826Z",
    "source": {
      "url": "text",
      "methodType": "GET",
      "authCredentials": {
        "name": "text",
        "authType": "text"
      },
      "name": "text",
      "description": "text"
    },
    "destination": {
      "url": "text",
      "methodType": "GET",
      "authCredentials": {
        "name": "text",
        "authType": "text"
      },
      "name": "text",
      "description": "text"
    }
  }
]