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

Response

200
application/json

请求成功

The response is of type object.