Workflows
Update workflow metadata
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
Update workflow metadata
PUT
/
v4
/
workflows
/
{workflowId}
/
metadata
curl --request PUT \
--url https://api.kadoa.com/v4/workflows/{workflowId}/metadata \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"limit": 123,
"updateInterval": "ONLY_ONCE",
"schedules": [
"<string>"
],
"name": "<string>",
"tags": [
"tag1",
"tag2"
],
"location": {
"type": "auto",
"isoCode": "<string>"
},
"monitoring": {
"enabled": true,
"fields": [
{
"fieldName": "<string>",
"operator": "changed"
}
],
"channels": [
{
"type": "EMAIL",
"emails": [
"<string>"
]
}
],
"conditions": {
"logicalOperator": "AND",
"conditions": [
{
"type": "SINGLE",
"field": "<string>",
"operator": "<string>",
"value": "<string>"
}
]
}
}
}'
{
"success": true,
"message": "<string>"
}
Authorizations
Path Parameters
ID of the workflow to update
Body
application/json
Response
200
application/json
Workflow metadata updated successfully
The response is of type object
.
curl --request PUT \
--url https://api.kadoa.com/v4/workflows/{workflowId}/metadata \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"limit": 123,
"updateInterval": "ONLY_ONCE",
"schedules": [
"<string>"
],
"name": "<string>",
"tags": [
"tag1",
"tag2"
],
"location": {
"type": "auto",
"isoCode": "<string>"
},
"monitoring": {
"enabled": true,
"fields": [
{
"fieldName": "<string>",
"operator": "changed"
}
],
"channels": [
{
"type": "EMAIL",
"emails": [
"<string>"
]
}
],
"conditions": {
"logicalOperator": "AND",
"conditions": [
{
"type": "SINGLE",
"field": "<string>",
"operator": "<string>",
"value": "<string>"
}
]
}
}
}'
{
"success": true,
"message": "<string>"
}