ModelSell 文档
管理接口日志

删除历史日志

删除当前用户可见的历史请求日志。

DELETE
/api/log/

删除当前用户可见的历史请求日志。

Authorization

AuthorizationBearer <token>

使用 Authorization Bearer API Key 进行鉴权。

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X DELETE "https://example.com/api/log/" \  -H "Content-Type: application/json" \  -d '{    "ids": [      0    ]  }'
{
  "success": true,
  "message": "string",
  "data": null
}