Change Log

  • 19-Jun-2024 | v7.0.0 | All new article

Contributors:

Adam Wilson - Logo Pogo

Workflows API

Retrieve Workflows via the public API endpoint using "where" filtering.

GET Workflows List

Retrieves a list of Workflows as a JSON response based on your provided query parameters.

/api/v2/admin/workflows

Data / Response:

{
    "Where" : {},
    "Order_By" : "Id",
    "Offset" : 0,
    "Limit" : 100,
}
{
  "Items": [
    {
      "Id": 0,
      "Name": "string",
      "IsDefault": true
    }
  ],
  "TotalItemsCount": 0
}