This endpoint maintains the multipart form data structure and streams
it directly to the backend service without buffering files in memory.
The multipart parsing happens on the backend service side.
POST
/
datasource
/
{datasource_id}
/
content
Python (SDK)
Copy
Ask AI
from meibelai import Meibelaiimport oswith Meibelai( api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""),) as m_client: res = m_client.datasources.content.upload_datasource_content(datasource_id="<id>") # Handle response print(res)