For the complete documentation index, see llms.txt. This page is also available as Markdown.

删除认证实体

删除已认证实体

DELETE https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}

此端点允许您删除已认证实体及其认证。

Headers

Name
Type
Description

Content-Type*

String

application/json

x-http-authorization*

String

从 https://iafcertsearch.org/import-management/api-integration 收到的 API 密钥

示例:

x-http-authorization: <<API KEY>>

{
  "data": 1
}
{
    "error": true,
    "timestamp": number (Epoch time),
    "elapse": number,
    "errors": {
      "message": "Invalid Session token has been used.",
      "code": "invalid_session_token"
    }
}
{
  "error": true,
  "timestamp": number (Epoch time),
  "elapse": number,
  "errors": {
    "message": "The requested resource could not be found but may be available again in the future. Subsequent requests by the client are permissible.",
    "code": "not_found"
  }
}

要查看响应数据示例,请单击响应描述右侧的右箭头。

你也可以使用 https://api.sandbox.iafcertsearch.org/api/client/v1/cb/ce/{company_id} 在沙盒服务器上进行测试。

看一下您可能如何调用此方法:

curl --location -g --request DELETE 'https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>'
require "uri"
require "json"
require "net/http"

url = URI("https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}")

https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true

request = Net::HTTP::Delete.new(url)
request["Content-Type"] = "application/json"
request["x-http-authorization"] = "<<API_KEY>>"

response = https.request(request)
puts response.read_body
import http.client
import json

conn = http.client.HTTPSConnection("api.iafcertsearch.org")
payload = ''
headers = {
  'Content-Type': 'application/json',
  'x-http-authorization': '<<API_KEY>>'
}
conn.request("DELETE", "/api/client/v1/cb/ce/{company_id}", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

Last updated