Update all Certifications
Update all Certifications
Headers
Name
Type
Description
{
"data": {
"updating": true
}
}curl --location --request PUT 'https://api.staging.iafcertsearch.org/api/client/v1/mncb/update-all-cert' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data ''require "uri"
require "json"
require "net/http"
url = URI("https://api.staging.iafcertsearch.org/api/client/v1/mncb/update-all-cert")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Content-Type"] = "application/json"
request["x-http-authorization"] = <<API_KEY>>
response = https.request(request)
puts response.read_bodyimport http.client
import json
conn = http.client.HTTPSConnection("api.staging.iafcertsearch.org")
payload = ''
headers = {
'Content-Type': 'application/json',
'x-http-authorization': <<API_KEY>>
}
conn.request("PUT", "/api/client/v1/mncb/update-all-cert", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))Last updated