from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateDataElementRequest(name="Example")
result = client.datasources.data_elements.update("datasource_id_value", "data_element_id_value", body=body)
print(result){
"id": "<string>",
"datasource_id": "<string>",
"name": "<string>",
"description": "<string>",
"media_type": "<string>",
"metadata": {},
"created_at": "<string>",
"updated_at": "<string>"
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateDataElementRequest(name="Example")
result = client.datasources.data_elements.update("datasource_id_value", "data_element_id_value", body=body)
print(result){
"id": "<string>",
"datasource_id": "<string>",
"name": "<string>",
"description": "<string>",
"media_type": "<string>",
"metadata": {},
"created_at": "<string>",
"updated_at": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
A single data element on a datasource.
Unique data element ID
ID of the datasource this element belongs to
Data element name
Human-authored description
MIME type of the underlying content
Arbitrary metadata key-value pairs
ISO 8601 creation timestamp
ISO 8601 last-update timestamp
Was this page helpful?