Workflows
Create a new workflow
Documentation
- Introduction
- Quickstart
- Workflow States
- Schemas and Templates
- Credits and Usage
- Crawling
- Adhoc Extractions
- Workspaces
- Chrome Extension
- Monitoring
- Integrations
- Advanced Workflows
- Security
- Compliance
- SDKs
API Reference
- Introduction
- Crawling
- Workflows
- Monitoring
- Advanced Workflows
- Templates
- Adhoc
- Events
- Files
- Webhooks
- Locations
Workflows
Create a new workflow
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
Body
application/json
Response
201
application/json
Workflow created
The response is of type object
.
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>"
}