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 '{
  "entity": "<string>",
  "fields": [
    {
      "name": "<string>",
      "type": "STRING",
      "description": "<string>",
      "example": "<string>"
    }
  ],
  "urls": [
    "<string>"
  ],
  "navigationMode": "single-page",
  "limit": 123,
  "location": {
    "type": "auto",
    "isoCode": "<string>"
  },
  "name": "<string>",
  "tags": [
    "<string>"
  ],
  "monitoring": {},
  "interval": "ONLY_ONCE",
  "schedule": [
    "<string>"
  ]
}'
{
  "success": true,
  "workflowId": "<string>",
  "info": "Your workflow has been acknowledged and will be installed within the next 5 minutes"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Create a workflow by defining entity and fields directly

Response

201
application/json

Workflow created successfully

The response is of type object.