Verify Certified Entity by ID

Verify Certified Entity by ID

GET /certified-entities/{icsce_id}

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

  • Certified Entity Requirements:

    • The API requires the icsce_id of a Certified Entity.

    • Multiple Certified Entities can be verified in one request by providing a comma separated string value for icsce_id .

    • The maximum number of icsce_id that this endpoint accepts is 100.

  • Response value:

    • The API will return matched Certified Entity records with its Certificates.

Headers

Name
Type
Description

Content-Type*

String

application/json

x-http-authorization*

String

API Key received from https://www.iafcertsearch.org/api-verification

Example:

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

Parameters

Key
Type
Description

icsce_id*

String

The ID of the Company or Certified Entity. Example: mdbce_KMi1zsb9CH2EorSzOJ9YEgtV

To verify multiple Companies using their IDs, separate them with comma ( , ). Example: mdbce_KMi1zsb9CH2EorSzOJ9YEgtV,mdbce_KMi1zsb9CH2EorSzOJ9YEgtV The maximum number of IDs that this endpoint accepts is 100.

Requests

curl --location --globoff --request GET '{API-URL}/certified-entities/{icsce_id}' \
--header 'x-http-authorization: <API_KEY>' \
--header 'Content-Type: application/json'

Responses

{
  "data": {
    "icsce_id": string,
    "matched_certified_entity_name": string,
    "match_status": string,
    "match_type": string,
    "certified_entity_english_name": string,
    "certified_entity_trading_name": string,
    "country": string,
    "certificates": [
      {
        "icscert_id": string,
        "accreditation_bodies_name": string,
        "certification_bodies_name": string,
        "certification_number": string,
        "certification_status": string,
        "certification_scope": string,
        "certification_standards_scheme": [
          {
            "standard_name": string,
            "scheme_name": string,
            "is_accredited_mla": boolean
          }
        ],
        "certification_main_sites": [
          {
            "street": string,
            "city": string,
            "state": string,
            "post_code": string,
            "full_address": string,
            "scope": string,
            "country": string
          }
        ],
        "certification_additional_sites": [
          {
            "street": string,
            "city": string,
            "state": string,
            "post_code": string,
            "full_address": string,
            "scope": string,
            "country": string
          }
        ],
        "certification_sectors": [
          {
            "sector_name": string,
            "sector_code": string
          }
        ],
        "updated_at": integer
      }
    ]
  }
}

Last updated