curl --request PATCH \
--url https://cloud.kaneo.app/api/task/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"taskIds": [
"<string>"
],
"operation": "updateStatus",
"value": "<string>"
}
'{
"success": true,
"updatedCount": 123
}Perform bulk operations on multiple tasks
curl --request PATCH \
--url https://cloud.kaneo.app/api/task/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"taskIds": [
"<string>"
],
"operation": "updateStatus",
"value": "<string>"
}
'{
"success": true,
"updatedCount": 123
}Bearer token authentication
Was this page helpful?