Version: 202601
Create upload file
POST/openapi/2026-01/file
Create an upload task for one or more files.
Request
- application/json
- Body
- Example
Bodyrequired
original_source_liststring[]required
A list of original file URLs to be uploaded. Each URL must be a valid link pointing to a file to process.Original source list, picture link, for example: ["https://picx.zhimg.com/v2-3b4fc7e3a1195a081d0259246c38debc_720w.jpg?source=172ae18b"]
{
"original_source_list": [
"string"
]
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
task_idstring
The task ID of the upload task
{
"code": "string",
"message": "string",
"data": {
"task_id": "string"
}
}