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",
  "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.

Path Parameters

uid
string
required

The UID of the Workflow

Response

200
application/json
Workflow show
uid
string

The UID of the Workflow.

name
string

The Workflow name.

status
enum<string>
default:draft

The status of the Workflow.

Available options:
draft,
live,
paused,
archived
executed_count
integer
default:0

Workflow's executions count.

trigger_type
enum<string>

The type of Workflow trigger.

Available options:
date,
user,
request
author_uid
string | null

Workflow's author UID.

updated_at
string

datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")

created_at
string

datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")