Upload Certification Body

Upload Certification Body

POST https://api.iafcertsearch.org/api/client/v2/ab/upload-cb

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

Headers

Request Body

{
  "data": {
    "certification_bodies_id": string
  }
}

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

You can also use https://api.sandbox.iafcertsearch.org/api/client/v1/ab/upload-cb to test it on the Sandbox server.

Take a look at how you might call this method:

curl --location --request POST 'https://api.iafcertsearch.org/api/client/v2/ab/upload-cb' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>' \
--data-raw '{
	"certification_body_identity_number": "string",
	"certification_body_name": "string",
	"certification_body_acronym": "string",
	"website": "string",
	"country": "string",
	"description": "string",
	"accreditation_status": "string",
	"public_email_address": "string",
	"public_phone_number": "string",
	"public_fax_number": "string",
	"key_locations": [
		{
			"key_location_id": "string",
			"office_type": "string",
			"country": "string",
			"street": "string",
			"state": "string",
			"city": "string",
			"zip_code": "string"
		}
	],	
	"certification_body_countries": [
		{
			"country": "string",
			"economy_accreditation_status": "string",
			"suspended_withdrawn_date": "string",
			"scheme_name": "string",
			"standard_code": "string"
		}
	],
	"standard_and_schemes": [
		{
			"key_locations": "string"
			"standard_code": "string",
			"issue_date": "string",
			"first_issue_date": "string",
			"expiry_date": "string",
			"scheme_name": "string",
			"scope_type": "string",
			"standard_status": "string"
		}
	],
	"technical_sectors": [
		{
			"sector_title": "string",
			"scheme_name": "string",
			"standard_code": "string",
			"sector_code": "string",
			"sector_accreditation_status": "string",
			"suspended_withdrawn_date": "string",
			"full_limited": "string",
			"extent_of_scope": "string"
		}
	]
}'

Last updated