GET
/
v1
/
workflows
curl --request GET \
  --url https://api.siit.io/v1/workflows \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "count": 123,
    "total": 123,
    "current_page": 123,
    "per_page": 20,
    "next_page_link": "<string>",
    "previous_page_link": "<string>"
  },
  "results": [
    {
      "uid": "<string>",
      "name": "<string>",
      "status": "draft",
      "executed_count": 0,
      "trigger_type": "date",
      "author_uid": "<string>",
      "updated_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

The current page

created_after
string

Filter Workflows created after a DateTime (ISO 8601).

created_before
string

Filter Workflows created before a DateTime (ISO 8601).

updated_after
string

Filter Workflows updated after a DateTime (ISO 8601).

updated_before
string

Filter Workflows updated before a DateTime (ISO 8601).

per_page
integer

Number of results retrieved per page.

Response

200
application/json
successful
meta
object
results
object[]