Bulk create, update, and delete widgets on a dashboard in a single request.
Documentation Index
Fetch the complete documentation index at: https://docs.cekura.ai/llms.txt
Use this file to discover all available pages before exploring further.
API Key Authentication. It should be included in the header of each request.
Serializer for bulk widget operations request.
Accepts separate lists for create, update, and delete operations. All operations are performed in a single transaction. Dashboard is provided via query parameter (dashboard_id).
Example request: { "create": [{"name": "New Widget", "field": "duration", "chart_type": "line"}, ...], "update": [{"id": 1, "name": "Updated Name", "filters": {}}, ...], "delete": [2, 3, 4] }
Response serializer for bulk widget operations.
Returns the created, updated, and deleted widgets.