Получение всех органов сертификации

Получение всех органов сертификации

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

Этот конечный пункт извлекает данные всех зарегистрированных органов сертификации.

Headers

Request Body

{
  "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"
        }
      ],
      "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"
        }
      ]
    },
    {
      "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"
        }
      ],
      "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"
        }
      ]
    }
  ],
  "meta": {
    "total_pages": number,
    "total_rows": number,
    "order": string,
    "order_by": string,
    "limit": number,
    "offset": number,
    "next_key": string
  }
}

Чтобы просмотреть пример данных ответа, щелкните стрелку вправо справа от описания ответа.

Вы также можете использовать https://api.sandbox.iafcertsearch.org/api/client/v1/ab/cb для тестирования на сервере Sandbox.

Взгляните, как вы могли бы вызвать этот метод:

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

Last updated