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

인증 삭제

인증서 삭제

DELETE https://api.iafcertsearch.org/api/client/v1/cb/cert/{company_certifications_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/cert/{company_certifications_id} 를 사용할 수도 있습니다.

이 방법을 호출하는 방법을 살펴보세요:

curl --location -g --request DELETE 'https://api.iafcertsearch.org/api/client/v1/cb/cert/{company_certifications_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/cert/{company_certifications_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/cert/{company_certifications_id}", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

Last updated