curl --request PUT \
--url https://api.kadoa.com/v4/workflows/{workflowId}/metadata \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"urls": [
"<string>"
],
"limit": 123,
"updateInterval": "ONLY_ONCE",
"schedules": [
"<string>"
],
"name": "<string>",
"description": "<string>",
"tags": [
"tag1",
"tag2"
],
"location": {
"type": "auto",
"isoCode": "<string>"
},
"monitoring": {
"fields": [
{
"fieldName": "<string>",
"operator": "changed"
}
],
"conditions": {
"logicalOperator": "AND",
"conditions": [
{
"type": "SINGLE",
"field": "<string>",
"operator": "<string>",
"value": "<string>"
}
]
}
},
"entity": "job_posting",
"schema": [
{
"name": "<string>",
"description": "<string>",
"example": "<string>",
"dataType": "STRING",
"isPrimaryKey": true,
"isRequired": true,
"isUnique": true
}
],
"additionalData": {},
"userPrompt": "<string>"
}
'{
"success": true,
"message": "<string>",
"deprecationNotice": "<string>"
}curl --request PUT \
--url https://api.kadoa.com/v4/workflows/{workflowId}/metadata \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"urls": [
"<string>"
],
"limit": 123,
"updateInterval": "ONLY_ONCE",
"schedules": [
"<string>"
],
"name": "<string>",
"description": "<string>",
"tags": [
"tag1",
"tag2"
],
"location": {
"type": "auto",
"isoCode": "<string>"
},
"monitoring": {
"fields": [
{
"fieldName": "<string>",
"operator": "changed"
}
],
"conditions": {
"logicalOperator": "AND",
"conditions": [
{
"type": "SINGLE",
"field": "<string>",
"operator": "<string>",
"value": "<string>"
}
]
}
},
"entity": "job_posting",
"schema": [
{
"name": "<string>",
"description": "<string>",
"example": "<string>",
"dataType": "STRING",
"isPrimaryKey": true,
"isRequired": true,
"isUnique": true
}
],
"additionalData": {},
"userPrompt": "<string>"
}
'{
"success": true,
"message": "<string>",
"deprecationNotice": "<string>"
}API key for authentication
ID of the workflow to update
List of target URLs for the workflow
The new limit for the workflow
The new update interval for the workflow
ONLY_ONCE, HOURLY, DAILY, WEEKLY, MONTHLY, CUSTOM Array of cron expressions for the workflow schedule
The new name for the workflow
The new description for the workflow
The tags for the workflow
["tag1", "tag2"]The new location for the workflow
Show child attributes
The monitoring config for the workflow
Show child attributes
The new entity for the workflow
"job_posting"
The new extraction schema for the workflow
Show child attributes
Additional static data for the workflow
Natural language instructions for the workflow.
10 - 5000