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>",
"dataType": "STRING",
"description": "<string>",
"example": "<string>"
}
],
"urls": [
"<string>"
],
"navigationMode": "single-page",
"userPrompt": "<string>",
"limit": 123,
"location": {
"type": "auto",
"isoCode": "<string>"
},
"name": "<string>",
"tags": [
"<string>"
],
"monitoring": {},
"interval": "ONLY_ONCE",
"schedules": [
"<string>"
]
}'
{
"success": true,
"workflowId": "<string>",
"info": "Your workflow has been acknowledged and will be installed within the next 5 minutes"
}
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>",
"dataType": "STRING",
"description": "<string>",
"example": "<string>"
}
],
"urls": [
"<string>"
],
"navigationMode": "single-page",
"userPrompt": "<string>",
"limit": 123,
"location": {
"type": "auto",
"isoCode": "<string>"
},
"name": "<string>",
"tags": [
"<string>"
],
"monitoring": {},
"interval": "ONLY_ONCE",
"schedules": [
"<string>"
]
}'
{
"success": true,
"workflowId": "<string>",
"info": "Your workflow has been acknowledged and will be installed within the next 5 minutes"
}
Create a workflow by defining entity and fields directly
Workflow created successfully
The response is of type object
.