cURL
curl --request POST \ --url https://api.geogen.io/v1/entities/actions/update-status \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "taskId": "<string>", "status": "not_started" } '
{ "success": true }
Update the status of a task on the kanban board. Move tasks through the workflow: not_started → in_progress → in_review → done.
API key authentication. Format: Bearer wsk_your_api_key
The task ID to update
New status for the task
not_started
in_progress
in_review
done
Task status updated successfully