Skip to main content
POST
/
llm-application
/
open
/
v2
/
application
/
file_stat
获取文件解析状态
curl --request POST \
  --url https://open.bigmodel.cn/api/llm-application/open/v2/application/file_stat \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "app_id": "<string>",
  "file_ids": [
    "<string>"
  ]
}'
{
  "data": [
    {
      "file_id": "<string>",
      "code": 123,
      "msg": "<string>"
    }
  ],
  "code": 123,
  "message": "<string>",
  "timestamp": 123
}

Authorizations

Authorization
string
header
required

使用以下格式进行身份验证:Bearer <your api key>

Body

application/json
app_id
string
required

智能体(应用)id

file_ids
string[]
required

文件id列表

Response

请求成功

data
object[]
required

文件解析状态列表

code
integer
required

响应码,200为成功

message
string
required

响应信息

timestamp
integer
required

响应时间戳

I