PUT
/
apps
/
{appSlug}
/
datasets
/
{externalId}
/
items
/
{itemId}
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
}

Authorizations

Authorization
string
header
required

API Key created in the Autoblocks Webapp

Path Parameters

appSlug
string
required
externalId
string
required
itemId
string
required

Body

application/json

Response

200 - application/json

The dataset item was updated successfully

The response is of type object.