POST
/
v4
/
workflows
curl --request POST \
  --url https://api.kadoa.com/v4/workflows \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "templateId": "<string>",
  "link": "<string>",
  "name": "<string>",
  "updateInterval": "ONLY_ONCE",
  "schedules": [
    "<string>"
  ],
  "monitoring": {
    "enabled": true,
    "fields": [
      "<string>"
    ],
    "mode": "ADDED",
    "channels": [
      {
        "type": "EMAIL",
        "emails": [
          "jsmith@example.com"
        ],
        "url": "<string>"
      }
    ]
  },
  "limit": 123,
  "location": {
    "type": "auto",
    "isoCode": "DE"
  },
  "tags": [
    "<string>"
  ]
}'
{
  "success": true,
  "workflowId": "<string>",
  "info": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Response

201
application/json
Workflow created

The response is of type object.