Skip to main content
GET
/
api
/
v1
/
flows
/
{source}
List flows
curl --request GET \
  --url https://ai-loop.alpeadria.com/api/v1/flows/{source} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "HAi2EtVRQewrOjXt",
      "displayName": "Inquiry Processor",
      "status": "PUBLISHED"
    },
    {
      "id": "VgtiK5DK1B",
      "displayName": "Customers KPI",
      "status": "PUBLISHED"
    }
  ],
  "nextCursor": null
}
Retrieve a list of available automation flows for a specific source.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

source
string
required

Query Parameters

limit
integer
cursor
string

Response

200 - application/json

List of flows

data
object[]
nextCursor
string | null