Upload Certification

Upload Certification

POST https://api.iafcertsearch.org/api/client/v1/ab/upload-cert

Fields that are marked with an asterisk (*) are mandatory.

Headers

Name
Type
Description

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

Name
Type
Description

certificate_number*

String

certification_status*

String

certificate_accreditation_status*

String

Accepted values:

Accredited

NoneAccredited

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_trading_name

String

certified_entity_unique_id

String

certified_entity_street_address

String

certified_entity_city

String

certified_entity_state

String

certified_entity_post_code

String

certified_entity_country*

String

certification_body_name*

String

certification_body_acronym_name

String

certification_body_identity_number

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

}

]

}

certified_entity_english_name

String

{
  "data": {
    "company_certifications_id": string
  }
}

To view the response data example, click the right arrow at the right side of the response description.

Take a look at how you might call this method:

curl --location --request POST 'https://api.iafcertsearch.org/api/client/v1/ab/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",
	"certification_body_name": "string",
	"certification_body_acronym_name": "string",
	"certification_body_identity_number": "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