इस एंडपॉइंट की मदद से आप एक प्रमाणित संस्था और उसके प्रमाण पत्रों को हटा सकते हैं।
200: OK अनुरोध सफल हुआ। 401: Unauthorized जब आप अमान्य एपीआई कुंजी का उपयोग करते हैं तो ऐसा होता है। 404: Not Found जब प्रमाण पत्र आईएएफ सर्च डेटाबेस में मौजूद नहीं होता है तो ऐसा होता है।
Copy {
"error" : true ,
"timestamp" : number (ईपोक समय) ,
"elapse" : number ,
"errors" : {
"message" : "Invalid Session token has been used." ,
"code" : "invalid_session_token"
}
}
Copy {
"error" : true ,
"timestamp" : number (ईपोक समय) ,
"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"
}
}
cURL Ruby Python PHP Java Node.js Go C#
Copy 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>>'
Copy 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
Copy 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" ))
Copy <? php
$curl = curl_init () ;
curl_setopt_array ( $curl , array(
CURLOPT_URL => 'https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}' ,
CURLOPT_RETURNTRANSFER => true ,
CURLOPT_ENCODING => '' ,
CURLOPT_MAXREDIRS => 10 ,
CURLOPT_TIMEOUT => 0 ,
CURLOPT_FOLLOWLOCATION => true ,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1 ,
CURLOPT_CUSTOMREQUEST => ' DELETE ' ,
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json' ,
'x-http-authorization: <<API_KEY>>'
) ,
) ) ;
$response = curl_exec ( $curl ) ;
curl_close ( $curl ) ;
echo $response;
Copy OkHttpClient client = new OkHttpClient() . newBuilder ()
. build ();
MediaType mediaType = MediaType . parse ( "application/json" );
RequestBody body = RequestBody . create (mediaType , "" );
Request request = new Request . Builder ()
. url ( "https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}" )
. method ( "DELETE" , body)
. addHeader ( "Content-Type" , "application/json" )
. addHeader ( "x-http-authorization" , "<<API_KEY>>" )
. build ();
Response response = client . newCall (request) . execute ();
Copy var axios = require ( 'axios' );
var config = {
method : 'delete' ,
maxBodyLength : Infinity ,
url : 'https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}' ,
headers : {
'Content-Type' : 'application/json' ,
'x-http-authorization' : '<<API_KEY>>'
}
};
axios (config)
.then ( function (response) {
console .log ( JSON .stringify ( response .data));
})
.catch ( function (error) {
console .log (error);
});
Copy package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main () {
url := "https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}"
method := "DELETE"
client := & http.Client {
}
req, err := http. NewRequest (method, url, nil )
if err != nil {
fmt. Println (err)
return
}
req.Header. Add ( "Content-Type" , "application/json" )
req.Header. Add ( "x-http-authorization" , "<<API_KEY>>" )
res, err := client. Do (req)
if err != nil {
fmt. Println (err)
return
}
defer res.Body. Close ()
body, err := ioutil. ReadAll (res.Body)
if err != nil {
fmt. Println (err)
return
}
fmt. Println ( string (body))
}
Copy var client = new RestClient ( "https://api.iafcertsearch.org/api/client/v1/cb/ce/{company_id}" );
client . Timeout = - 1 ;
var request = new RestRequest ( Method . DELETE );
request . AddHeader ( "Content-Type" , "application/json" );
request . AddHeader ( "x-http-authorization" , "<<API_KEY>>" );
IRestResponse response = client . Execute (request);
Console . WriteLine ( response . client );