Retrieve Certificate by IAF ID
Retrieve Certificate by IAF ID
Get certificate details by IAF ID.
GET
/certificate/{cert_id}
Fields that are marked with an asterisk (*
) are mandatory.
Certificate Information Requirements:
The API requires the
cert_id
of a Certificate.
Response value:
The API will return a single matched Certificate record.
Headers
Name
Type
Description
Content-Type*
String
application/json
x-http-authorization*
String
API Key received from https://www.iafcertsearch.org/api-verification
Example:
x-http-authorization: <<API KEY>>
Parameters
Key
Type
Description
cert_id*
String
The ID of the Certificate.
Example:
cert_GuFIQmBnjaNG8Xvz7Q3DeBVx
Requests
curl --location --globoff --request GET '{API-URL}/certificate/{cert_id}' \
--header 'x-http-authorization: <API_KEY>' \
--header 'Content-Type: application/json'
Responses
Request Successful
{
"data": {
"cert_id": string,
"accreditation_bodies_name": string,
"certification_bodies_name": string,
"certification_number": string,
"certification_status": string,
"certification_scope": string,
"certification_standards_scheme": [
{
"standard_name": string,
"scheme_name": string,
"is_accredited_mla": boolean
}
],
"certification_main_sites": [
{
"street": string,
"city": string,
"state": string,
"post_code": string,
"full_address": string,
"scope": string,
"country": string
}
],
"certification_additional_sites": [
{
"street": string,
"city": string,
"state": string,
"post_code": string,
"full_address": string,
"scope": string,
"country": string
}
],
"certification_sectors": [
{
"sector_name": string,
"sector_code": string
}
],
"certified_entities": [
{
"ce_id": string,
"certified_entity_name": string,
"certified_entity_english_name": string,
"certified_entity_trading_name": string,
"country": string,
"certified_entity_addresses": [
{
"street": string,
"city": string,
"state": string,
"post_code": string,
"full_address": string,
"country": string
}
],
}
],
"updated_at": integer
}
}
Last updated