Retrieve a Certification Body

Retrieve a Certification Body

GET https://api.iafcertsearch.org/api/client/v1/ab/cb/{certification_bodies_id}

This endpoint retrieves the data of a single certification body.

Headers

Name
Type
Description

Content-Type*

String

application/json

x-http-authorization*

String

API Key received from https://iafcertsearch.org/import-management/api-integration

Example:

x-http-authorization: <<API KEY>>

"data": {  
  "certification_body_identity_number": "string",
  "certification_body_name": "string",
  "certification_body_acronym": "string",
  "country": "string",
  "description": "string",
  "accreditation_status": "string",
  "office_directories": [
    {
      "office_type": "string",
      "country": "string",
      "street": "string",
      "state": "string",
      "city": "string",
      "zip_code": "string",
    }
  ],	
  "certification_body_countries": [
    {
      "country": "string",
      "country_accreditation_status": "string"
    }
  ],
  "standard_and_schemes": [
    {
      "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",
      "sector_accreditation_status": "string"
    }
  ]
}
circle-info

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

circle-info

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

Take a look at how you might call this method:

Last updated