DELETE
/
v1
/
docs
/
delete
curl --request DELETE \
  --url https://api.reportify.cn/v1/docs/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "doc_ids": [
    "<string>"
  ]
}'
{
  "doc_ids": [
    "<string>"
  ]
}

删除文档

URL: /v1/docs/delete
方法: DELETE
描述: 删除文档。

请求参数

参数名类型描述
doc_idslist文档唯一 ID

响应参数

参数名类型描述
doc_idslist文档唯一 ID

请求示例

cURL

curl -X DELETE https://api.reportify.cn/v1/docs/delete \
-H "Authorization: Bearer 447460****09c9" \
-H "Content-Type: application/json" \
-d '{
    "doc_ids": [
        "632486024552595",
        "632486024552596"        
    ]
}'

Python 示例

import requests

url = "https://api.reportify.cn/v1/docs/delete"
headers = {
    "Authorization": "Bearer 447460****09c9",
    "Content-Type": "application/json"
}
payload = {
    "doc_ids": [
        "632486024552595",
        "632486024552596"
    ]
}

response = requests.delete(url, headers=headers, json=payload)
print(response.json())

响应示例

{
    "doc_ids":["632486024552595"]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
doc_ids
string[]
required

Response

200
application/json
Successful Response
doc_ids
string[]
required