Skip to main content
GET
/
v1
/
workflowtemplates
/
{workflowTemplateId}
Fetch a Workflow Template
curl --request GET \
  --url https://api.sakari.io/v1/workflowtemplates/{workflowTemplateId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "status": "active",
    "tags": [
      "<string>"
    ],
    "description": "<string>",
    "groups": [
      {
        "label": "<string>",
        "description": "<string>",
        "parameters": [
          {
            "label": "<string>",
            "helperText": "<string>",
            "link": "<string>",
            "type": "basictext",
            "mandatory": true,
            "args": [
              "<string>"
            ],
            "options": [
              {
                "value": "<string>",
                "label": "<string>"
              }
            ],
            "min": 123,
            "max": 123,
            "defaultValue": "<string>",
            "id": "<string>"
          }
        ]
      }
    ],
    "integrations": [
      {
        "name": "<string>",
        "installed": true
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

workflowTemplateId
string
required

Workflow Template Id used

Response

successful operation

success
boolean
required
data
object