Retrieve all Certification Bodies

Retrieve all Certification Bodies

GET https://api.iafcertsearch.org/api/client/v2/ab/cb

This endpoint retrieves the data of all registered certification bodies.

Headers

Request Body

{
  "data": [
    {
      "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": [
        {
          "standard_code": "string",
          "issue_date": "string",
          "first_issue_date": "string",
          "expiry_date": "string",
          "scheme_name": "string",
          "scope_type": "string",
          "standard_status": "string"
        }
      ],
      "technical_sectors": [
        {
          "scheme_name": "string",
          "standard_code": "string",
          "sector_title": "string",
          "sector_code": "string",
          "sector_accreditation_status": "string",
          "suspended_withdrawn_date": "string",
          "full_limited": "string",
          "extent_of_scope": "string"
        }
      ]
    },
   {
      "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": [
        {
          "standard_code": "string",
          "issue_date": "string",
          "first_issue_date": "string",
          "expiry_date": "string",
          "scheme_name": "string",
          "scope_type": "string",
          "standard_status": "string"
        }
      ],
      "technical_sectors": [
        {
          "scheme_name": "string",
          "standard_code": "string",
          "sector_title": "string",
          "sector_code": "string",
          "sector_accreditation_status": "string",
          "suspended_withdrawn_date": "string",
          "full_limited": "string",
          "extent_of_scope": "string"
        }
      ]
    },
  ],
  "meta": {
    "total_pages": number,
    "total_rows": number,
    "order": string,
    "order_by": string,
    "limit": number,
    "offset": number
    "next_key": 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/cb to test it on the Sandbox server.

Take a look at how you might call this method:

curl --location --request GET 'https://api.iafcertsearch.org/api/client/v2/ab/cb' \
--header 'Content-Type: application/json' \
--header 'x-http-authorization: <<API_KEY>>'

Last updated