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
}
]
}
}
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
}
]
}
}
The access token received from the authorization server in the OAuth 2.0 flow.
Workflow Template Id used
successful operation
The response is of type object
.