GET
/
v1
/
workflows
/
{uid}
curl --request GET \
  --url https://api.siit.io/v1/workflows/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "uid": "<string>",
  "name": "<string>",
  "status": "draft",
  "executed_count": 0,
  "trigger_type": "date",
  "trigger_name": "date.date",
  "author_uid": "<string>",
  "updated_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Usage

Authorizations

Authorization
string
header
required

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

Path Parameters

uid
string
required

The UID of the Workflow

Response

200
application/json

Workflow show

The response is of type object.