API Reference
Update a dataset item
Python
from autoblocks.api.app_client import AutoblocksAppClient client = AutoblocksAppClient( api_key="<YOUR_API_KEY>", app_slug="my-app", ) update_result = client.datasets.update_item( external_id="my-dataset", item_id="item-123", data={"title": "Updated Title", "content": "Updated content"}, split_names=["validation"] )
{ "success": true }
API Key created in the Autoblocks Webapp
The dataset item was updated successfully
The response is of type object.
object