Run in Apifox
Create a new data processing task (Process → Forward chain) Returns task ID immediately. Processing happens in the background. Tasks are forwarded to Elasticsearch when complete.
Request Body Params application/json Required
{
"source" : "string" ,
"source_type" : "string" ,
"chunking_strategy" : "string" ,
"index_name" : "string" ,
"original_filename" : "string" ,
"embedding_model_id" : 0 ,
"tenant_id" : "string" ,
"additional_params" : {
"property1" : "string" ,
"property2" : "string"
}
} Request Code Samples
curl --location --request POST '/tasks' \
--header 'authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"source": "string",
"source_type": "string",
"chunking_strategy": "string",
"index_name": "string",
"original_filename": "string",
"embedding_model_id": 0,
"tenant_id": "string",
"additional_params": {
"property1": "string",
"property2": "string"
}
}' Modified at 2025-12-12 05:25:46