Upload Certification
Upload Certification
POST
https://api.iafcertsearch.org/api/client/v1/cb/upload-cert
Fields that are marked with an asterisk (*
) are mandatory.
Headers
x-http-authorization*
String
API Key received from https://iafcertsearch.org/data-management/api
Example:
x-http-authorization: <<API KEY>>
Content-Type*
String
application/json
Request Body
certificate_number*
String
certification_status*
String
Accepted values:
active
inactive
suspended
cancelled
hidden
withdrawn
expired
*Note: Certifications uploaded via API with the hidden
certification_status displays as "Draft" when you log in to IAF CertSearch.
certificate_accreditation_status*
String
Accepted values:
Accredited
Unaccredited
certification_type*
String
certification_scope
String
certification_original_issue_date
String
Format: YYYYMMDD
certification_issue_date*
String
Format: YYYYMMDD
certification_expiry_date*
String
Format: YYYYMMDD
certified_entity_name*
String
certified_entity_trading_name
String
certified_entity_unique_id*
String
certified_entity_street_address*
String
certified_entity_street_city*
String
certified_entity_state
String
certified_entity_post_code
String
certified_entity_country*
String
accreditation_body_name*
String
accreditation_body_acronym_name*
String
schemes*
Array
Example
{
"schemes": [
{
"scheme_name": "string",
"standard_list": [
{
"standards_name": "string"
}
]
}
]
}
sites
Array
Example
{
"sites": [
{
"street": "string",
"city": "string",
"state": "string",
"country": "string",
"postcode": "string",
"scope_description": "string
}
]
}
To delete all existing sites of a certification, set the value of the sites
key to an empty array like so:
{
"sites": []
}
certified_entity_english_name
String
certified_entity_website
String
{
"data": true,
"company_certifications_id": string
}
Take a look at how you might call this method:
curl --location --request POST 'https://api.iafcertsearch.org/api/client/v1/cb/upload-cert' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
"certificate_number": "string",
"certification_status": "string",
"certificate_accreditation_status": "string",
"certification_type": "string",
"certification_scope": "string",
"certification_original_issue_date": "string",
"certification_issue_date": "string",
"certification_expiry_date": "string",
"certified_entity_name": "string",
"certified_entity_english_name": "string",
"certified_entity_trading_name": "string",
"certified_entity_unique_id": "string",
"certified_entity_street_address": "string",
"certified_entity_street_city": "string",
"certified_entity_state": "string",
"certified_entity_post_code": "string",
"certified_entity_country": "string",
"certified_entity_website": "string",
"accreditation_body_name": "string",
"accreditation_body_acronym_name": "string",
"schemes": [
{
"scheme_name": "string",
"standard_list": [
{
"standards_name": "string"
}
]
}
],
"sites": [
{
"street": "string",
"city": "string",
"state": "string",
"country": "string",
"postcode": "string",
"scope_description": "string"
}
]
}'
Last updated